digraphs: cell hover styling
[sheet.git] / digraphs.css
index 7feb88d77e64a5e687d95b6c57a780d25d0bf3a1..3e5300422d999637dd9de5b4c10e675400fad48e 100644 (file)
@@ -1,8 +1,33 @@
+/* general */
+
+body {
+       background: #FFF;
+       color: #000;
+}
+
+a, a:visited {
+       color: #000;
+       text-decoration: underline;
+}
+a:active, a:hover {
+       color: #00F;
+       text-decoration: none;
+}
+
+/* head/foot */
+
 h1 {
        text-align: center;
-       margin: 0 auto 0.2em;
+       font-size: 200%;
+       margin: 0 0 0.2em;
+}
+p.footer {
+       margin: 1em 0 0;
+       text-align: center;
 }
 
+/* digraph table */
+
 table {
        border-collapse: collapse;
        table-layout: fixed; /* prevent resizing, notably in msie6 */
@@ -13,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 */
@@ -29,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}
@@ -45,28 +70,46 @@ 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;
-}
+/* hover effects */
+td.Greek:hover                                     {background: #FA9}
+td.Cyrillic:hover                                  {background: #FB7}
+td.Latin:hover                                     {background: #FF6}
+td.Hebrew:hover                                    {background: #FFA}
+td.Arabic:hover                                    {background: #CFD}
+td.Hiragana:hover                                  {background: #AF8}
+td.Katakana:hover                                  {background: #BF7}
+td.Bopomofo:hover                                  {background: #8FA}
+td.Nd:hover, td.Nl:hover, td.No:hover              {background: #F88} /* number */
+td.Sc:hover                                        {background: #F8C} /* currency */
+td.Sm:hover                                        {background: #F8F} /* math */
+td.So:hover                                        {background: #A8F} /* symbol */
+td.Cf:hover, td.Pd:hover, td.Po:hover              {background: #8AF} /* punctuation */
+td.Ps:hover, td.Pe:hover, td.Pi:hover, td.Pf:hover {background: #8DF} /* quote */
+td.Lm:hover, td.Sk:hover                           {background: #BFF} /* spacing modifier */
+td.Mn:hover                                        {background: #CDE} /* modifier */
+td.Zs:hover                                        {background: #CED} /* space */
+td.Cc:hover                                        {background: #DDD} /* control */
+td.Xa:hover {outline: 1px solid #0F0} /* ascii */
+td.Xl:hover {outline: 1px solid #0C0} /* latin1 */
+td.Co:hover {outline: 1px solid #C00} /* private */
+td.Xz:hover {outline: 1px solid #F00} /* proposed */