commit 2282b24f4658447c20f6b12904a0d2b25427ea9c
parent 34f0fdb6a1521ae23dd718fedbcab88108176f8e
Author: krasjet
Date: 2020-05-28 16:48Z
add rules to fix highlight
Diffstat:
2 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
@@ -2,6 +2,7 @@
syntax.css: sesq.py
python -B sesq.py > syntax.css
+ echo ".sourceCode .hll { display: block; }" >> syntax.css
clean:
rm -f syntax.css
diff --git a/syntax.css b/syntax.css
@@ -1,3 +1,4 @@
+.sourceCode .hll { background-color: #dce0e0 }
.sourceCode { background: #f4f7f7; }
.sourceCode .c { color: #909494 } /* Comment */
.sourceCode .err { color: #FF6363 } /* Error */
@@ -65,3 +66,4 @@
.sourceCode .vi { color: #5c6060; font-style: italic } /* Name.Variable.Instance */
.sourceCode .vm { color: #5c6060; font-style: italic } /* Name.Variable.Magic */
.sourceCode .il { color: #818AC2; font-weight: bold } /* Literal.Number.Integer.Long */
+.sourceCode .hll { display: block; }