diff trunk/src/format.css @ 44:5055947e0f98

- Specific operators and comments can be formatted with CSS now.
author aziz
date Tue, 26 Jun 2007 14:00:01 +0000
parents cf3047cf3cd2
children cadd2bfe686c
line wrap: on
line diff
--- a/trunk/src/format.css	Tue Jun 26 13:15:00 2007 +0000
+++ b/trunk/src/format.css	Tue Jun 26 14:00:01 2007 +0000
@@ -1,3 +1,4 @@
+@charset "utf-8";
 sourcetext {
   display: block;
   white-space: pre;
@@ -5,9 +6,17 @@
   font-size: 0.8em;
 }
 k { color: darkblue; font-weight: bold; }
-c { color: green; }
-i { color: darkblue; }
+c[c=lc], c[c=bc] { color: green; }
+c[c=nc] { color: darkgreen; }
+i { color: black; }
 sl { color: red; }
 cl { color: purple; }
 op { color: royalblue; }
 br { color: orange; }
+op[c=aa] { content: "and"; } /*&& ∧*/
+op[c=oo] { content: "or"; } /*|| ∨*/
+op[c=n] { content: "¬"; } /*!*/
+op[c=ne] { content: "≠"; } /*!=*/
+op[c=le] { content: "≤"; } /*<=*/
+op[c=ge] { content: "≥"; } /*>=*/
+op[c=lg] { content: "≶"; } /*<>*/