termcol: generic h/s/v table generator function
[sheet.git] / base.css
1 /* general */
2
3 body {
4         background: #FFF;
5         color: #000;
6         font-size: 90%;
7         text-align: center;
8 }
9 a, a:visited {
10         color: #000;
11         text-decoration: underline;
12 }
13 a:active, a:hover {
14         color: #00F;
15         text-decoration: none;
16 }
17
18 /* common sections */
19
20 h1, h2 {
21         font-size: 200%;
22         margin: 0;
23 }
24 h2, caption {
25         font-size: 110%;
26         font-weight: bold;
27 }
28 caption {
29         margin: 1ex;
30 }
31
32 hr {
33         clear: both;
34         visibility: hidden;
35         height: 2ex;
36         margin: 0;
37 }
38
39 .section ul {
40         margin-bottom: 1ex;
41 }
42 .section h2 {
43         margin: 0 1ex;
44         clear: both;
45 }
46 .section table {
47         float: left;
48         position: relative; /* prevents buggy hovering in table if caption present in gecko */
49         margin: 1ex 1ex 2ex;
50 }
51 .section .section {
52         float: left;
53 }
54 #charset .section table {
55         margin: -0.5ex 0 1ex; /* headers provide sufficient spacing already */
56 }
57
58 p {
59         margin: 1ex 0 1em;
60 }
61 p.aside {
62         font-size: 80%;
63 }
64 p.footer {
65         margin: 1em 0 0;
66         clear: both;
67 }
68 .help + .footer {
69         margin: 0;
70 }
71
72 .error {
73         background: #F00;
74         background: rgba(255, 0, 0, .8);
75         color: #FFF;
76         border: 2px solid #000;
77         border-width: 2px 0;
78         padding: 1em;
79         margin: 2ex auto;
80         clear: both;
81 }
82
83 ul {
84         margin: 0;
85         padding: 0;
86         list-style: none;
87 }
88
89 #source pre {
90         display: inline-block;
91         text-align: left;
92 }
93
94 h2 small {
95         position: absolute; /* side note; do not influence alignment */
96         margin-left: 1em;
97 }
98
99 dl > dt {
100         float: left;
101         width: 50%;
102         text-align: right;
103 }
104 dl > dd {
105         text-align: left;
106         padding-left: 1em;
107         overflow: hidden;
108 }
109
110 /* "keyboard" (list of keys) */
111
112 #rows {margin-top: -5ex} /* top (esc) row fits besides header */
113 .row2 {margin-left: 7em} /* row offsets relative to ~6em key width */
114 .row3 {margin-left: 8em}
115 .row4 {margin-left: 10em} /* should actually align to next key on row0 */
116         /* ...however rows>=1 are shifted a bit, to make space */
117
118 table.keys tr {
119         clear: both; /* start new row (screen row) */
120         display: block;
121 }
122 table.keys tbody {
123         /* start new row block (keyboard row) */
124         clear: both;
125         padding-top: 1ex;
126         display: block;
127 }
128
129 table.keys th,
130 h3      {display: none} /* semantic details (non-css/js) */
131 .keys .mode {display: none} /* initially hidden (only show interactively (js)) */
132
133 table.keys {
134         display: block;
135         width: 82.5em; /*       12 * (2px + 1px + 6.2em + 1px + 2px) + 8em*/
136 //      padding-right: 72px;
137         border-spacing: 0;
138         border-collapse: collapse;
139 }
140 table.keys > * {
141         margin-right: -72px;
142 }
143
144 /* individual keys */
145
146 dl.legend dt,
147 .keys td {
148         float: left;
149         width: 6.2em;
150         line-height: 2.25ex; /* a little terser (seems to be gecko's default anyway) */
151         height: 4.5ex; /* 2 lines */
152         overflow: hidden;
153         margin: 0 2px -1px;
154         padding: 0;
155         text-align: center;
156         border: 1px solid #000;
157         border-radius: 4px;
158         -moz-border-radius: 4px;
159 }
160 .keys td b {
161         float: left;
162         font-size: 200%;
163         line-height: 2.5ex; /* inherits otherwise */
164         padding-left: 2px;
165 }
166 .keys .row0 td { /* omni-present esc */
167         width: 8.5em;
168 }
169
170 /* fine tuning of special occurrences */
171
172 .keys td b[title] { /* mnemonic hover */
173         cursor: help;
174 }
175 .keys td[onclick]:hover { /* link */
176         cursor: pointer;
177 }
178 .keys td a { /* key link */
179         color: inherit;
180         text-decoration: none;
181         display: block;
182         height: 100%;
183 }
184
185 .keys .meta td b,
186 .keys .ctrl td b,
187 .keys .lead td b { /* char with ctrl or leading key */
188         font-size: 100%; /* space is too limited for 2+ double-sized chars */
189         line-height: 5ex; /* keep double height though */
190 }
191 .keys .meta td b small,
192 .keys .ctrl td b small { /* meta key indicator */
193         font-size: 70%;
194         font-weight: normal; /* nice and subtle */
195 }
196
197 /* tables */
198
199 table {
200         border-collapse: collapse;
201 }
202 th, td {
203         border-color: #778;
204         border: 1px solid #888;
205         background: #DDD;
206 }
207 thead th, td {
208         text-align: center;
209 }
210
211 /* character table */
212
213 .glyphs thead th, .glyphs td {
214         width: 1.6em; /* regular interval */
215 }
216 .glyphs tbody td {
217         font-size: 112%;
218 }
219 .glyphs.big tbody td {
220         font-size: 200%;
221 }
222 .glyphs .glyphs {
223         margin: 0.5ex 0;
224 }
225 .glyphs .glyphs td {
226         font-size: 100%;
227 }
228
229 /* table headers */
230
231 th,
232 tfoot td,
233 thead td {
234         border: 0;
235         background: transparent !important;
236 }
237 .glyphs thead td {
238         width: auto; /* no glyph cells in header */
239 }
240 th {
241         padding: 0 0.2em;
242 }
243 .diinfo th {
244         font-size: 50%; /* mostly insignificant here */
245         font-weight: normal;
246 }
247 .diinfo tbody th {
248         text-align: right; /* variable width so keep near cells */
249         padding: 0 0.5em;
250 }
251 .cat {
252         font-size: 70%;
253         text-transform: uppercase;
254 }
255 tfoot .cat th {
256         border-top: 1px solid #888;
257 }
258
259 /* digraphs map */
260
261 table.dimap {
262         table-layout: fixed; /* prevent resizing, notably in msie6 */
263 }
264 .dimap thead th, .dimap td {
265         /* below-maximum size (but still average enough to be regular) so we can fit more */
266         width: 1.2em; /* msie only looks at the first row */
267         min-width: 1em; /* prevents gecko from restricting to page width */
268 }
269 .dimap th {
270         text-align: center; /* row headers are also glyph-sized */
271 }
272
273 .mapped tbody, .mapped colgroup,
274 .dimap tbody, .dimap colgroup {
275         border: 2px double #888; /* major character group grid */
276 }
277 .mapped tbody,
278 .dimap tbody {
279         border-width: 2px 0; /* horizontal group dividers */
280 }
281 .mapped colgroup,
282 .dimap colgroup {
283         border-width: 0 2px; /* vertical divides */
284 }
285
286 /* digraph selection */
287
288 .diinfo {
289         -moz-column-width: 24em;
290         -webkit-column-width: 24em;
291         column-width: 24em;
292 }
293 .diinfo > div {
294         overflow: hidden;
295         column-break-inside: avoid;
296         -webkit-column-break-inside: avoid;
297         position: relative; z-index: 1; /* webkit bug */
298 }
299
300 /* glyph cell overlay (digraph labels) */
301
302 .glyphs.dilabel td {
303         padding: 0;
304         padding-bottom: 1.1ex; /* reserve space for label */
305         vertical-align: bottom;
306 }
307 .glyphs small {
308         font-size: 50%;
309         display: block;
310         margin-top: 0.2ex;
311         margin-bottom: -2.2ex; /* take cell padding */
312 }
313 .glyphs small.digraph {
314         background: #000;
315         color: #FFF;
316         opacity: 0.3;
317 }
318 .glyphs small.value {
319         background: #600;
320         color: #FFF;
321         opacity: 0.3;
322 }
323
324 /* character properties */
325
326 .X  {background: #FFF} /* unidentified */
327 #digraphs .Xa {color: #0A0} /* ascii */
328 #digraphs .Xl {color: #070} /* latin1 */
329 #digraphs .u-prop {color: #D00} /* proposed */
330 #digraphs .u-prop.ex {color: #D88; color: rgba(221, 0, 0, .5)} /* unofficial proposal */
331
332 .Lm, .Mc, .Me, .Zl, .Zp {background: #F00} /* unstyled */
333 .X > span               {background: #898; background: rgba(0, 0, 0, .25)} /* invisible contents */
334
335 /* letter scripts */
336 .Armenian,
337 .Greek    {background: #FFE8CF}
338 .Cyrillic {background: #FFDDA8}
339 .Latin    {background: #FFB}
340 .Aramaic,
341 .Hebrew   {background: #FFD}
342 .Arabic   {background: #EFE}
343 .African  {background: #DED}
344 .Brahmic  {background: #FBB} /* same as number */
345 .Khmer    {background: #FBA}
346 .Hangul,
347 .Syllabic {background: #DEA}
348 .Katakana {background: #DFA}
349 .Hiragana {background: #DFC}
350 .Bopomofo {background: #BFC}
351 .Han      {background: #CFD}
352 .Alpha    {background: #ADA} /* other scripts */
353
354 /* other categories */
355 .Nd, .Nl, .No         {background: #FDD} /* number */
356 .Sc                   {background: #FCD} /* currency */
357 .Sm                   {background: #ECE} /* math */
358 .So                   {background: #DCF} /* symbol */
359 .Pd, .Po, .Pc         {background: #CDF} /* punctuation */
360 .Ps, .Pe, .Pi, .Pf    {background: #BEF} /* quote */
361 .Lm, .Sk              {background: #CEE} /* spacing modifier */
362 .Mn                   {background: #ACC} /* modifier */
363 .Cc, .Cf {color: #666; background: #BBB} /* control */
364 .Zs                   {background: #ACB} /* space */
365 .Co, .Xi.Co           {background: #DCC} /* private */
366 .Xi, .Cs              {background: #CCC} /* invalid */
367 .Xd                   {color: #844} /* deprecated */
368 .Xr                   {color: #888} /* reserved (digraph reverse or proposal) */
369 .dimap .Xr            {background: #EEE} /* reversed digraph */
370 .ccmap .Xr {opacity:.4}
371
372 /* support levels */
373 .l1 {background: #FDD} /* no, unsupported, other */
374 .l2 {background: #FED} /* partial, restricted, unofficial */
375         /* default u-prop, u-bmp */
376 .l3 {background: #FFD} /* almost, imperfect, common */
377         /* default u-di, u-lat1 */
378 .l4 {background: #EFD} /* yes, supported, ubiquitous, native */
379         /* default u-ascii */
380 .l5 {background: #DFD} /* complete, perfect */
381 .l0 {background: #EEE} /* unknown, omitted */
382 .ex {     color: #888; color: rgba(0, 0, 0, .5)} /* experimental, disfavoured */
383 .u-invalid {background: #BBB} /* invalid, impossible */
384
385 .p0         {opacity: .6}
386 .p0.p       {opacity: 1}
387 .p::after   {content: '!'; color: #F00}
388 .p4::after  {color: #C00}
389 .p3::after  {color: #A00}
390 .p2::after  {color: #800}
391 .p1::after,
392 .p0::after  {color: #000}
393 .p09::after {opacity: .9}
394 .p08::after {opacity: .8}
395 .p07::after {opacity: .7}
396 .p06::after {opacity: .6}
397 .p05::after {opacity: .5}
398 .p04::after {opacity: .4}
399 .p03::after {opacity: .3}
400 .p02::after {opacity: .2}
401 .p01::after {opacity: .1}
402 .p00::after {display: none}
403
404 /* code syntax */
405 .sy-comment    { color: #888 }
406 .sy-constant   { color: #008 }
407 .sy-type,
408 .sy-identifier { color: #804 }
409 .sy-statement  { }
410 .sy-preProc    { }
411 .sy-special    { color: #408 }
412 .sy-error      { font-weight: bold; background-color: #F00; color: #FFF }
413 .sy-todo       { background-color: #FF0 }
414
415 /* hover effects */
416 .u-di,
417 .X:hover {cursor: help}
418 .X:hover > span                            {background: #FFF} /* whitespace marker */
419 .Greek:hover, .Armenian:hover              {background: #FA8}
420 .Cyrillic:hover                            {background: #FB7}
421 .Latin:hover                               {background: #EE4}
422 .Hebrew:hover, .Aramaic:hover              {background: #FFA}
423 .Arabic:hover                              {background: #CFD}
424 .African:hover                             {background: #BDB}
425 .Syllabic:hover, .Hangul:hover             {background: #CE6}
426 .Katakana:hover                            {background: #BF7}
427 .Hiragana:hover                            {background: #AF8}
428 .Bopomofo:hover                            {background: #8FA}
429 .Brahmic:hover                             {background: #F77}
430 .Khmer:hover                               {background: #F87}
431 .Han:hover                                 {background: #5EB}
432 .Alpha:hover                               {background: #5C5}
433 .Nd:hover, .Nl:hover, .No:hover            {background: #F99} /* number */
434 .Sc:hover                                  {background: #F8C} /* currency */
435 .Sm:hover                                  {background: #F8F} /* math */
436 .So:hover                                  {background: #A8F} /* symbol */
437 .Pd:hover, .Po:hover, .Pc:hover            {background: #8AF} /* punctuation */
438 .Ps:hover, .Pe:hover, .Pi:hover, .Pf:hover {background: #8DF} /* quote */
439 .Lm:hover, .Sk:hover                       {background: #BFF} /* spacing modifier */
440 .Mn:hover                                  {background: #CDE} /* modifier */
441 .Zs:hover                                  {background: #CED} /* space */
442 .Cc:hover, .Cf:hover                       {background: #DDD} /* control */
443 .Co:hover                                  {background: #A77} /* private */
444 .Xr:hover                                  {background: #FFF} /* reserved */
445 .Xi:hover                                  {background: #DDD} /* invalid */
446 .Xa:hover {outline: 1px solid #0F0} /* ascii */
447 .Xl:hover {outline: 1px solid #0C0} /* latin1 */
448 .u-prop:hover {outline: 1px solid #F00} /* proposed */
449 .l0:hover                                  {background: #888}
450 .l1:hover                                  {background: #F88}
451 .l2:hover                                  {background: #FC8}
452 .l3:hover                                  {background: #FF8}
453 .l4:hover                                  {background: #CF8}
454 .l5:hover                                  {background: #8F8}
455
456 /* key type colorization */
457
458 .c-sa,
459 .g1 {background: #BFE} /* cyan: info */
460 .c-na,
461 .g2 {background: #BFB} /* green: motion */
462 .g3 {background: #DFA} /* greenish: jump (g2+) */
463 .c-af,
464 .g4 {background: #FFA} /* yellow: command */
465 .c-eu,
466 .g5 {background: #FDA} /* orangish: open (g6-) */
467 .g6 {background: #FCA} /* orange: insert */
468 .c-as,
469 .g7 {background: #FCC} /* red: mode */
470 .c-an,
471 .g8 {background: #ECE} /* purple: visual (g7+) */
472 .c-oc,
473 .g9 {background: #CCF} /* blue: prefix */
474
475 .c-sa:hover,
476 .g1 a:hover, .g1[onclick]:hover {background: #5ED}
477 .c-na:hover,
478 .g2 a:hover, .g2[onclick]:hover {background: #7E7}
479 .g3 a:hover, .g3[onclick]:hover {background: #CE6}
480 .c-af:hover,
481 .g4 a:hover, .g4[onclick]:hover {background: #EE4}
482 .c-eu:hover,
483 .g5 a:hover, .g5[onclick]:hover {background: #FA6}
484 .g6 a:hover, .g6[onclick]:hover {background: #F97}
485 .c-as:hover,
486 .g7 a:hover, .g7[onclick]:hover {background: #F88}
487 .c-an:hover,
488 .g8 a:hover, .g8[onclick]:hover {background: #D9D}
489 .c-oc:hover,
490 .g9 a:hover, .g9[onclick]:hover {background: #99F}
491
492 .no {
493         background: #EEE; /* unassigned */
494 }
495 .keys td.ni {
496         border: 0;
497         padding: 1px; /* same size as borderlessless keys */
498         background: none;
499 }
500
501 dl.legend dt.more,
502 .keys td.more b {
503         text-shadow: #F20 0 0 0.1em;
504 }
505 dl.legend dt.more:hover,
506 .keys td.more:hover b {
507         text-shadow: #F20 0 0 0.5em, #FC0 0 0 0.2em;
508 }
509 dl.legend dt.ext,
510 .keys td.ext {
511         border-style: dashed;
512 }
513 dl.legend dt.new,
514 .keys td.new {
515         opacity: .6;
516 }
517
518 /* l/r help columns */
519
520 .help {
521         display: table;
522         width: 100%;
523 }
524 .help > * {
525         display: table-cell;
526         width: 20%;
527         vertical-align: top;
528 }
529
530 .left dl.legend {
531         margin-left: 6.4em; /* a bit over 6.2em to allow for borders+padding (border-sizing would work too) */
532 }
533 .left dl.legend dt {
534         margin-left: -6.4em; /* msie<=6 multiply this by two for some reason */
535         float: left;
536         clear: left;
537 }
538 .left dl.legend dd {
539         float: left; /* align next to dt (except msie<=7 does just the opposite) */
540 }
541 .right dl.legend {
542         margin-right: 6.4em;
543 }
544 .right dl.legend dt {
545         margin-right: -6.4em;
546         float: right;
547         clear: right;
548 }
549 .right dl.legend dd {
550         float: right;
551 }
552 .right {
553         text-align: right;
554 }
555
556 /* help/legend */
557
558 dl.legend dt {
559         margin: 0 0 1px; /* distinct keys */
560         height: auto; /* not key-height */
561         padding: 2px 0;
562 }
563 dl.legend dd {
564         margin: 3px 0.4em 0; /* align text (add dt border+padding height) */
565         padding: 0;
566 }
567
568 dl.legend-options dt {
569         background: #CCC;
570 }
571
572 ul.legend-set {
573         clear: right;
574         padding-top: 1ex;
575 }
576 ul.legend-set li {
577         margin: 6px 0; /* similar to dl legends */
578 }
579
580 .legend {
581         margin-top: 1em;
582 }
583 .legend table {
584         width: 100%;
585 }
586 .legend td {
587         padding: 0 0.2em;
588 }
589
590 /* page-specific */
591
592 #browser td > a {
593         text-decoration: none;
594 }
595 #browser td > a:active,
596 #browser td > a:hover {
597         text-decoration: underline;
598 }
599 #browser tr .aside {
600         font-size: 80%;
601         overflow: hidden;
602         height: 0;
603         -webkit-transition: all 1s ease-in;
604         -o-transition: all 1s ease-in;
605         -moz-transition: all 1s ease-in;
606         transition: height 1s ease-in;
607 }
608 #browser tr .aside p {
609         margin: 1ex 0;
610 }
611 #browser tr.target .aside,
612 #browser tr:target .aside {
613         height: auto;
614 }
615 #browser td.X {
616         white-space: nowrap; /* some browsers break on dashes */
617 }
618
619 #browser tr:target > td:first-of-type,
620 #browser tr.focus > td:first-of-type {
621         background: inherit;
622 }
623 #browser tr.focus > td {
624         border-bottom-color: #000;
625 }
626
627 form.aside {
628         position: absolute;
629         top: 3ex;
630         right: 1em;
631 }
632
633 /* printing hints */
634
635 @page {
636         size: landscape;
637         margin: 0;
638 }
639
640 @media print {
641         ul.legend-set {display: none} /* current options only relevant on dynamic media */
642 }
643