termcol: iterm pastel palette
[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;
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 /* colour map */
260
261 table.color td {
262         border: 1px solid #555;
263         font-weight: normal;
264         padding: 0 8px;
265 }
266 table.color td samp {
267         margin: 0 -8px 0 8px;
268         font-family: inherit;
269         float: right;
270 }
271 table.color td samp ~ samp {
272 }
273 table.color td samp small {
274         font: 100% monospace;
275         padding: 0 .5ex;
276 }
277
278 /* digraphs map */
279
280 table.dimap {
281         table-layout: fixed; /* prevent resizing, notably in msie6 */
282 }
283 .dimap thead th, .dimap td {
284         /* below-maximum size (but still average enough to be regular) so we can fit more */
285         width: 1.2em; /* msie only looks at the first row */
286         min-width: 1em; /* prevents gecko from restricting to page width */
287 }
288 .dimap th {
289         text-align: center; /* row headers are also glyph-sized */
290 }
291
292 .mapped tbody, .mapped colgroup,
293 .dimap tbody, .dimap colgroup {
294         border: 2px double #888; /* major character group grid */
295 }
296 .mapped tbody,
297 .dimap tbody {
298         border-width: 2px 0; /* horizontal group dividers */
299 }
300 .mapped colgroup,
301 .dimap colgroup {
302         border-width: 0 2px; /* vertical divides */
303 }
304
305 /* digraph selection */
306
307 .diinfo {
308         -moz-column-width: 24em;
309         -webkit-column-width: 24em;
310         column-width: 24em;
311 }
312 .diinfo > div {
313         overflow: hidden;
314         column-break-inside: avoid;
315         -webkit-column-break-inside: avoid;
316         position: relative; z-index: 1; /* webkit bug */
317 }
318
319 /* glyph cell overlay (digraph labels) */
320
321 .glyphs.dilabel td {
322         padding: 0;
323         padding-bottom: 1.1ex; /* reserve space for label */
324         vertical-align: bottom;
325 }
326 .glyphs small {
327         font-size: 50%;
328         display: block;
329         margin-top: 0.2ex;
330         margin-bottom: -2.2ex; /* take cell padding */
331 }
332 .glyphs small.digraph {
333         background: #000;
334         color: #FFF;
335         opacity: 0.3;
336 }
337 .glyphs small.value {
338         background: #600;
339         color: #FFF;
340         opacity: 0.3;
341 }
342
343 /* character properties */
344
345 .X  {background: #FFF} /* unidentified */
346 #digraphs .Xa {color: #0A0} /* ascii */
347 #digraphs .Xl {color: #070} /* latin1 */
348 #digraphs .u-prop {color: #D00} /* proposed */
349 #digraphs .u-prop.ex {color: #D88; color: rgba(221, 0, 0, .5)} /* unofficial proposal */
350
351 .Lm, .Mc, .Me, .Zl, .Zp {background: #F00} /* unstyled */
352 .X > span               {background: #898; background: rgba(0, 0, 0, .25)} /* invisible contents */
353
354 /* letter scripts */
355 .Armenian,
356 .Greek    {background: #FFE8CF}
357 .Cyrillic {background: #FFDDA8}
358 .Latin    {background: #FFB}
359 .Aramaic,
360 .Hebrew   {background: #FFD}
361 .Arabic   {background: #EFE}
362 .African  {background: #DED}
363 .Brahmic  {background: #FBB} /* same as number */
364 .Khmer    {background: #FBA}
365 .Hangul,
366 .Syllabic {background: #DEA}
367 .Katakana {background: #DFA}
368 .Hiragana {background: #DFC}
369 .Bopomofo {background: #BFC}
370 .Han      {background: #CFD}
371 .Alpha    {background: #ADA} /* other scripts */
372
373 /* other categories */
374 .Nd, .Nl, .No         {background: #FDD} /* number */
375 .Sc                   {background: #FCD} /* currency */
376 .Sm                   {background: #ECE} /* math */
377 .So                   {background: #DCF} /* symbol */
378 .Pd, .Po, .Pc         {background: #CDF} /* punctuation */
379 .Ps, .Pe, .Pi, .Pf    {background: #BEF} /* quote */
380 .Lm, .Sk              {background: #CEE} /* spacing modifier */
381 .Mn                   {background: #ACC} /* modifier */
382 .Cc, .Cf {color: #666; background: #BBB} /* control */
383 .Zs                   {background: #ACB} /* space */
384 .Co, .Xi.Co           {background: #DCC} /* private */
385 .Xi, .Cs              {background: #CCC} /* invalid */
386 .Xd                   {color: #844} /* deprecated */
387 .Xr                   {color: #888} /* reserved (digraph reverse or proposal) */
388 .dimap .Xr            {background: #EEE} /* reversed digraph */
389 .ccmap .Xr {opacity:.4}
390
391 /* support levels */
392 .l1 {background: #FDD} /* no, unsupported, other */
393 .l2 {background: #FED} /* partial, restricted, unofficial */
394         /* default u-prop, u-bmp */
395 .l3 {background: #FFD} /* almost, imperfect, common */
396         /* default u-di, u-lat1 */
397 .l4 {background: #EFD} /* yes, supported, ubiquitous, native */
398         /* default u-ascii */
399 .l5 {background: #DFD} /* complete, perfect */
400 .l0 {background: #EEE} /* unknown, omitted */
401 .ex {     color: #888; color: rgba(0, 0, 0, .5)} /* experimental, disfavoured */
402 .u-invalid {background: #BBB} /* invalid, impossible */
403
404 .p0         {opacity: .6}
405 .p0.p       {opacity: 1}
406 .p::after   {content: '!'; color: #F00}
407 .p4::after  {color: #C00}
408 .p3::after  {color: #A00}
409 .p2::after  {color: #800}
410 .p1::after,
411 .p0::after  {color: #000}
412 .p09::after {opacity: .9}
413 .p08::after {opacity: .8}
414 .p07::after {opacity: .7}
415 .p06::after {opacity: .6}
416 .p05::after {opacity: .5}
417 .p04::after {opacity: .4}
418 .p03::after {opacity: .3}
419 .p02::after {opacity: .2}
420 .p01::after {opacity: .1}
421 .p00::after {display: none}
422
423 /* code syntax */
424 .sy-comment    { color: #888 }
425 .sy-constant   { color: #008 }
426 .sy-type,
427 .sy-identifier { color: #804 }
428 .sy-statement  { }
429 .sy-preProc    { }
430 .sy-special    { color: #408 }
431 .sy-error      { font-weight: bold; background-color: #F00; color: #FFF }
432 .sy-todo       { background-color: #FF0 }
433
434 /* hover effects */
435 .u-di,
436 .X:hover {cursor: help}
437 .X:hover > span                            {background: #FFF} /* whitespace marker */
438 .Greek:hover, .Armenian:hover              {background: #FA8}
439 .Cyrillic:hover                            {background: #FB7}
440 .Latin:hover                               {background: #EE4}
441 .Hebrew:hover, .Aramaic:hover              {background: #FFA}
442 .Arabic:hover                              {background: #CFD}
443 .African:hover                             {background: #BDB}
444 .Syllabic:hover, .Hangul:hover             {background: #CE6}
445 .Katakana:hover                            {background: #BF7}
446 .Hiragana:hover                            {background: #AF8}
447 .Bopomofo:hover                            {background: #8FA}
448 .Brahmic:hover                             {background: #F77}
449 .Khmer:hover                               {background: #F87}
450 .Han:hover                                 {background: #5EB}
451 .Alpha:hover                               {background: #5C5}
452 .Nd:hover, .Nl:hover, .No:hover            {background: #F99} /* number */
453 .Sc:hover                                  {background: #F8C} /* currency */
454 .Sm:hover                                  {background: #F8F} /* math */
455 .So:hover                                  {background: #A8F} /* symbol */
456 .Pd:hover, .Po:hover, .Pc:hover            {background: #8AF} /* punctuation */
457 .Ps:hover, .Pe:hover, .Pi:hover, .Pf:hover {background: #8DF} /* quote */
458 .Lm:hover, .Sk:hover                       {background: #BFF} /* spacing modifier */
459 .Mn:hover                                  {background: #CDE} /* modifier */
460 .Zs:hover                                  {background: #CED} /* space */
461 .Cc:hover, .Cf:hover                       {background: #DDD} /* control */
462 .Co:hover                                  {background: #A77} /* private */
463 .Xr:hover                                  {background: #FFF} /* reserved */
464 .Xi:hover                                  {background: #DDD} /* invalid */
465 .Xa:hover {outline: 1px solid #0F0} /* ascii */
466 .Xl:hover {outline: 1px solid #0C0} /* latin1 */
467 .u-prop:hover {outline: 1px solid #F00} /* proposed */
468 .l0:hover                                  {background: #888}
469 .l1:hover                                  {background: #F88}
470 .l2:hover                                  {background: #FC8}
471 .l3:hover                                  {background: #FF8}
472 .l4:hover                                  {background: #CF8}
473 .l5:hover                                  {background: #8F8}
474
475 /* key type colorization */
476
477 .c-sa,
478 .g1 {background: #BFE} /* cyan: info */
479 .c-na,
480 .g2 {background: #BFB} /* green: motion */
481 .g3 {background: #DFA} /* greenish: jump (g2+) */
482 .c-af,
483 .g4 {background: #FFA} /* yellow: command */
484 .c-eu,
485 .g5 {background: #FDA} /* orangish: open (g6-) */
486 .g6 {background: #FCA} /* orange: insert */
487 .c-as,
488 .g7 {background: #FCC} /* red: mode */
489 .c-an,
490 .g8 {background: #ECE} /* purple: visual (g7+) */
491 .c-oc,
492 .g9 {background: #CCF} /* blue: prefix */
493
494 .c-sa:hover,
495 .g1 a:hover, .g1[onclick]:hover {background: #5ED}
496 .c-na:hover,
497 .g2 a:hover, .g2[onclick]:hover {background: #7E7}
498 .g3 a:hover, .g3[onclick]:hover {background: #CE6}
499 .c-af:hover,
500 .g4 a:hover, .g4[onclick]:hover {background: #EE4}
501 .c-eu:hover,
502 .g5 a:hover, .g5[onclick]:hover {background: #FA6}
503 .g6 a:hover, .g6[onclick]:hover {background: #F97}
504 .c-as:hover,
505 .g7 a:hover, .g7[onclick]:hover {background: #F88}
506 .c-an:hover,
507 .g8 a:hover, .g8[onclick]:hover {background: #D9D}
508 .c-oc:hover,
509 .g9 a:hover, .g9[onclick]:hover {background: #99F}
510
511 .no {
512         background: #EEE; /* unassigned */
513 }
514 .keys td.ni {
515         border: 0;
516         padding: 1px; /* same size as borderlessless keys */
517         background: none;
518 }
519
520 dl.legend dt.more,
521 .keys td.more b {
522         text-shadow: #F20 0 0 0.1em;
523 }
524 dl.legend dt.more:hover,
525 .keys td.more:hover b {
526         text-shadow: #F20 0 0 0.5em, #FC0 0 0 0.2em;
527 }
528 dl.legend dt.ext,
529 .keys td.ext {
530         border-style: dashed;
531 }
532 dl.legend dt.new,
533 .keys td.new {
534         opacity: .6;
535 }
536
537 /* l/r help columns */
538
539 .help {
540         display: table;
541         width: 100%;
542 }
543 .help > * {
544         display: table-cell;
545         width: 20%;
546         vertical-align: top;
547 }
548
549 .left dl.legend {
550         margin-left: 6.4em; /* a bit over 6.2em to allow for borders+padding (border-sizing would work too) */
551 }
552 .left dl.legend dt {
553         margin-left: -6.4em; /* msie<=6 multiply this by two for some reason */
554         float: left;
555         clear: left;
556 }
557 .left dl.legend dd {
558         float: left; /* align next to dt (except msie<=7 does just the opposite) */
559 }
560 .right dl.legend {
561         margin-right: 6.4em;
562 }
563 .right dl.legend dt {
564         margin-right: -6.4em;
565         float: right;
566         clear: right;
567 }
568 .right dl.legend dd {
569         float: right;
570 }
571 .right {
572         text-align: right;
573 }
574
575 /* help/legend */
576
577 dl.legend dt {
578         margin: 0 0 1px; /* distinct keys */
579         height: auto; /* not key-height */
580         padding: 2px 0;
581 }
582 dl.legend dd {
583         margin: 3px 0.4em 0; /* align text (add dt border+padding height) */
584         padding: 0;
585 }
586
587 dl.legend-options dt {
588         background: #CCC;
589 }
590
591 ul.legend-set {
592         clear: right;
593         padding-top: 1ex;
594 }
595 ul.legend-set li {
596         margin: 6px 0; /* similar to dl legends */
597 }
598
599 .legend {
600         margin-top: 1em;
601 }
602 .legend table {
603         width: 100%;
604 }
605 .legend td {
606         padding: 0 0.2em;
607 }
608
609 /* page-specific */
610
611 #browser td > a {
612         text-decoration: none;
613 }
614 #browser td > a:active,
615 #browser td > a:hover {
616         text-decoration: underline;
617 }
618 #browser tr .aside {
619         font-size: 80%;
620         overflow: hidden;
621         height: 0;
622         -webkit-transition: all 1s ease-in;
623         -o-transition: all 1s ease-in;
624         -moz-transition: all 1s ease-in;
625         transition: height 1s ease-in;
626 }
627 #browser tr .aside p {
628         margin: 1ex 0;
629 }
630 #browser tr.target .aside,
631 #browser tr:target .aside {
632         height: auto;
633 }
634 #browser td.X {
635         white-space: nowrap; /* some browsers break on dashes */
636 }
637
638 #browser tr:target > td:first-of-type,
639 #browser tr.focus > td:first-of-type {
640         background: inherit;
641 }
642 #browser tr.focus > td {
643         border-bottom-color: #000;
644 }
645
646 form.aside {
647         position: absolute;
648         top: 3ex;
649         right: 1em;
650 }
651
652 /* printing hints */
653
654 @page {
655         size: landscape;
656         margin: 0;
657 }
658
659 @media print {
660         ul.legend-set {display: none} /* current options only relevant on dynamic media */
661 }
662