digraphs: css code improvements
authorMischa POSLAWSKY <perl@shiar.org>
Sat, 13 Sep 2008 03:59:02 +0000 (03:59 +0000)
committerMischa POSLAWSKY <perl@shiar.org>
Tue, 16 Sep 2008 03:31:31 +0000 (03:31 +0000)
One syntax fix, a few section comments, and align some declarations for easier
reading.

digraphs.css

index 4b9588d8cf33c49ea2e3750ca643071a2b943b82..81d627792eb326262dbb231e9610bc197b38d2c3 100644 (file)
@@ -1,3 +1,5 @@
+/* general */
+
 body {
        background: #FFF;
        color: #000;
@@ -12,6 +14,8 @@ a:active, a:hover {
        text-decoration: none;
 }
 
+/* head/foot */
+
 h1 {
        text-align: center;
        font-size: 200%;
@@ -34,11 +38,13 @@ table {
 #legend table {
        width: 100%;
        table-layout: auto;
-#}
+}
 #legend td {
        padding: 0 0.2em;
 }
 
+/* character cells */
+
 thead th, td {
        width: 1.2em; /* msie only looks at the first row */
        min-width: 1em; /* prevents gecko from restricting to page width */
@@ -50,13 +56,11 @@ td {
        border: 1px solid #888;
        background: #DDD;
 }
-td.X {
-       background: #FFF;
-}
 
-td.Lm, td.Mc, td.Me, td.Zl, td.Zp, td.Cs {background:red} /* unknown */
+td.X {background: #FFF} /* unidentified */
+td.Lm, td.Mc, td.Me, td.Zl, td.Zp, td.Cs {background: #F00} /* unstyled */
 
-/* letters */
+/* letter scripts */
 td.Greek    {background: #FFE0CF}
 td.Cyrillic {background: #FFDDA8}
 td.Latin    {background: #FFB}
@@ -66,28 +70,22 @@ td.Hiragana {background: #DFC}
 td.Katakana {background: #DFA}
 td.Bopomofo {background: #BFC}
 
-td.Nd, td.Nl,
-td.No {background: #FBB} /* number */
-td.Sc {background: #FCD} /* currency */
-td.Sm {background: #ECE} /* math */
-td.So {background: #DDCCFF} /* symbol */
-td.Cf, td.Pd,
-td.Po {background: #CDF} /* punctuation */
-td.Ps, td.Pe, td.Pi,
-td.Pf {background: #BEF} /* quote */
-td.Lm,
-td.Sk {background: #CEE} /* spacing modifier */
-td.Mn {background: #ACC} /* modifier */
-td.Cc {background: #BBB; color: #666} /* control */
-td.Zs {background: #ACB} /* space */
-td.Zs span {background: #EEE}
+/* other categories */
+td.Nd, td.Nl, td.No        {background: #FBB} /* number */
+td.Sc                      {background: #FCD} /* currency */
+td.Sm                      {background: #ECE} /* math */
+td.So                      {background: #DCF} /* symbol */
+td.Cf, td.Pd, td.Po        {background: #CDF} /* punctuation */
+td.Ps, td.Pe, td.Pi, td.Pf {background: #BEF} /* quote */
+td.Lm, td.Sk               {background: #CEE} /* spacing modifier */
+td.Mn                      {background: #ACC} /* modifier */
+td.Cc         {color: #666; background: #BBB} /* control */
+td.Zs                      {background: #ACB} /* space */
+td.Zs span                 {background: #EEE}
 
+/* properties */
 td.Xa {color: #0A0} /* ascii */
 td.Xl {color: #070} /* latin1 */
 td.Co {color: #800} /* private */
 td.Xz {color: #D00} /* proposed */
 
-tr:hover td {
-       background: #FF8;
-}
-