7b150526b11e9978bc122ec7bfe6917fdcbcc576
[sheet.git] / base.css
1 /* media features */
2
3 @import url(terse.css) all and (max-width: 80em);
4
5 @import url(mono.css) all and (monochrome);
6
7 /* general */
8
9 body {
10         background: #FFF;
11         color: #000;
12         font-size: 90%;
13 }
14 a, a:visited {
15         color: #000;
16         text-decoration: underline;
17 }
18 a:active, a:hover {
19         color: #00F;
20         text-decoration: none;
21 }
22
23 /* common sections */
24
25 h1, h2 {
26         text-align: center;
27         font-size: 200%;
28         margin: 0;
29 }
30 h2 {
31         font-size: 125%;
32 }
33
34 hr {
35         clear: both;
36         visibility: hidden;
37         height: 2ex;
38         margin: 0;
39 }
40
41 .diinfo h2 {
42         margin: 0 1ex;
43         clear: both;
44         font-size: 110%;
45         text-align: left;
46 }
47
48 p {
49         text-align: center;
50         margin: 1ex 0 1em;
51 }
52 p.aside {
53         font-size: 80%;
54 }
55 p.footer {
56         margin: 1em 0 0;
57 }
58 hr ~ .footer {
59         margin: 0;
60 }
61
62 /* "keyboard" (list of keys) */
63
64 ul {
65         margin: 0;
66         padding: 0;
67         list-style: none;
68 }
69 ul#rows {margin-top: -5ex} /* top (esc) row fits besides header */
70 li.row1 {margin-left: 7em} /* row offsets relative to ~6em key width */
71 li.row2 {margin-left: 8em}
72 li.row3 {margin-left: 10em} /* should actually align to next key on row0 */
73         /* ...however rows>=1 are shifted a bit, to make space */
74
75 li.row {
76         clear: both; /* start new row block (keyboard row) */
77         padding-top: 1ex;
78 }
79 li.row > ul > li {
80         clear: both; /* start new row (screen row) */
81 } /* css2 selectors ignored by msie<=6 */
82 li.row ul ul {
83         clear: both;
84 } /* css1 alternative as well (doesn't match in gecko for some reason) */
85
86 h3      {display: none} /* semantic details (non-css/js) */
87 li.mode {display: none} /* initially hidden (only show interactively (js)) */
88
89 /* individual keys */
90
91 dl.legend dt,
92 ul.keys li {
93         float: left;
94         width: 6.2em;
95         line-height: 2.25ex; /* a little terser (seems to be gecko's default anyway) */
96         height: 4.5ex; /* 2 lines */
97         overflow: hidden;
98         margin: 0 2px -1px;
99         text-align: center;
100         border: 1px solid #000;
101         border-radius: 4px;
102         -moz-border-radius: 4px;
103 }
104 ul.keys li b {
105         float: left;
106         font-size: 200%;
107         line-height: 2.5ex; /* inherits otherwise */
108         padding-left: 2px;
109 }
110 ul.keys.omni li { /* omni-present esc */
111         width: 8.5em;
112 }
113
114 /* fine tuning of special occurrences */
115
116 ul.keys li b[title] { /* mnemonic hover */
117         cursor: help;
118 }
119 ul.keys li[onclick]:hover { /* link */
120         cursor: pointer;
121 }
122 ul.keys.ctrl li b,
123 ul.keys.lead li b { /* char with ctrl or leading key */
124         font-size: 100%; /* space is too limited for 2+ double-sized chars */
125         line-height: 5ex; /* keep double height though */
126 }
127 ul.keys.ctrl li b small { /* meta key indicator */
128         font-size: 70%;
129         font-weight: normal; /* nice and subtle */
130 }
131
132 /* character table */
133
134 table.glyphs {
135         border-collapse: collapse;
136 }
137 .glyphs thead th, .glyphs td {
138         text-align: center;
139         width: 1.6em; /* regular interval */
140 }
141 .glyphs th, .glyphs td {
142         border-color: #778;
143         border: 1px solid #888;
144         background: #DDD;
145 }
146 .glyphs tbody td {
147         font-size: 112%;
148 }
149
150 /* table headers */
151
152 .glyphs th,
153 .glyphs thead td {
154         border: 0;
155         background: transparent !important;
156 }
157 .glyphs thead td {
158         width: auto; /* no glyph cells in header */
159 }
160 .glyphs th {
161         padding: 0 0.2em;
162 }
163 .diinfo .glyphs th {
164         font-size: 50%; /* mostly insignificant here */
165         font-weight: normal;
166 }
167 .diinfo .glyphs tbody th {
168         text-align: right; /* variable width so keep near cells */
169         padding: 0 0.5em;
170 }
171
172 /* digraphs map */
173
174 table.glyphs.dimap {
175         table-layout: fixed; /* prevent resizing, notably in msie6 */
176 }
177 .glyphs.dimap thead th, .glyphs.dimap td {
178         /* below-maximum size (but still average enough to be regular) so we can fit more */
179         width: 1.2em; /* msie only looks at the first row */
180         min-width: 1em; /* prevents gecko from restricting to page width */
181 }
182 .glyphs.dimap th {
183         text-align: center; /* row headers are also glyph-sized */
184 }
185
186 .glyphs.dimap tbody, .glyphs.dimap colgroup {
187         border: 2px double #888; /* major character group grid */
188 }
189 .glyphs.dimap tbody {
190         border-width: 2px 0; /* horizontal group dividers */
191 }
192 .glyphs.dimap colgroup {
193         border-width: 0 2px; /* vertical divides */
194 }
195
196 /* digraph selection */
197
198 .diinfo {
199         -moz-column-width: 24em;
200 }
201 .diinfo > div {
202         overflow: hidden;
203 }
204
205 .diinfo table.glyphs {
206         margin: 1ex 1ex 2ex;
207         float: left;
208 }
209
210 /* glyph cell overlay (digraph labels) */
211
212 .glyphs.dilabel td {
213         padding: 0;
214         padding-bottom: 1.1ex; /* reserve space for label */
215         vertical-align: bottom;
216 }
217 .glyphs small {
218         font-size: 50%;
219         display: block;
220         margin-top: 0.2ex;
221         margin-bottom: -2.2ex; /* take cell padding */
222 }
223 .glyphs small.digraph {
224         background: #000;
225         color: #FFF;
226         opacity: 0.3;
227 }
228 .glyphs small.value {
229         background: #600;
230         color: #FFF;
231         opacity: 0.3;
232 }
233
234 /* character properties */
235
236 td.X  {background: #FFF} /* unidentified */
237 td.Xr {background: #EEE} /* reverse */
238 td.Xa {color: #0A0} /* ascii */
239 td.Xl {color: #070} /* latin1 */
240   .Xz {color: #D00} /* proposed */
241
242 td.Lm, td.Mc, td.Me, td.Zl, td.Zp, td.Cs {background: #F00} /* unstyled */
243
244 /* letter scripts */
245 td.Greek    {background: #FFE0CF}
246 td.Cyrillic {background: #FFDDA8}
247 td.Latin    {background: #FFB}
248 td.Hebrew   {background: #FFD}
249 td.Arabic   {background: #EFE}
250 td.Hangul   {background: #DEA}
251 td.Katakana {background: #DFA}
252 td.Hiragana {background: #DFC}
253 td.Bopomofo {background: #BFC}
254
255 /* other categories */
256 td.Nd, td.Nl, td.No        {background: #FBB} /* number */
257 td.Sc                      {background: #FCD} /* currency */
258 td.Sm                      {background: #ECE} /* math */
259 td.So                      {background: #DCF} /* symbol */
260 td.Cf, td.Pd, td.Po        {background: #CDF} /* punctuation */
261 td.Ps, td.Pe, td.Pi, td.Pf {background: #BEF} /* quote */
262 td.Lm, td.Sk               {background: #CEE} /* spacing modifier */
263 td.Mn                      {background: #ACC} /* modifier */
264 td.Cc         {color: #666; background: #BBB} /* control */
265 td.Zs                      {background: #ACB} /* space */
266 td.Zs span                 {background: #EEE}
267 td.Co                      {background: #A99} /* private */
268
269 /* implementation-based alternatives */
270 td.di-b       {background: #FDD} /* bmp */
271 td.di-d       {background: #FFD} /* rfc-1345 digraph */
272 td.di-prop    {background: #FED} /* proposed digraph */
273 td.di-a       {background: #EFD} /* ascii */
274 td.di-rare    {background: #EEE} /* disfavoured */
275 td.di-invalid {background: #BBB} /* impossible */
276
277 /* hover effects */
278 td.di-d,
279 td.X:hover {cursor: help}
280 td.Greek:hover                                     {background: #FA9}
281 td.Cyrillic:hover                                  {background: #FB7}
282 td.Latin:hover                                     {background: #FF6}
283 td.Hebrew:hover                                    {background: #FFA}
284 td.Arabic:hover                                    {background: #CFD}
285 td.Hangul:hover                                    {background: #CE6}
286 td.Katakana:hover                                  {background: #BF7}
287 td.Hiragana:hover                                  {background: #AF8}
288 td.Bopomofo:hover                                  {background: #8FA}
289 td.Nd:hover, td.Nl:hover, td.No:hover              {background: #F88} /* number */
290 td.Sc:hover                                        {background: #F8C} /* currency */
291 td.Sm:hover                                        {background: #F8F} /* math */
292 td.So:hover                                        {background: #A8F} /* symbol */
293 td.Cf:hover, td.Pd:hover, td.Po:hover              {background: #8AF} /* punctuation */
294 td.Ps:hover, td.Pe:hover, td.Pi:hover, td.Pf:hover {background: #8DF} /* quote */
295 td.Lm:hover, td.Sk:hover                           {background: #BFF} /* spacing modifier */
296 td.Mn:hover                                        {background: #CDE} /* modifier */
297 td.Zs:hover                                        {background: #CED} /* space */
298 td.Cc:hover                                        {background: #DDD} /* control */
299 td.Co:hover                                        {background: #A77} /* private */
300 td.Xa:hover {outline: 1px solid #0F0} /* ascii */
301 td.Xl:hover {outline: 1px solid #0C0} /* latin1 */
302 td.Xz:hover {outline: 1px solid #F00} /* proposed */
303 td.di-rare:hover                                   {background: #BBB}
304 td.di-b:hover                                      {background: #F88}
305 td.di-d:hover                                      {background: #FF8}
306 td.di-prop:hover                                   {background: #FC8}
307 td.di-a:hover                                      {background: #CF8}
308
309 /* key type colorization */
310
311 .pm {background: #BFB}   /* motion */
312 .po {background: #DFA}   /* window */
313 .co {background: #FFA}   /* command */
314 .ci {background: #BFE}   /* info */
315 .cp {background: #FDA}   /* TODO */
316 .mi {background: #FCA}   /* insert mode */
317 .mo {background: #FCC}   /* mode */
318 .mv {background: #ECE}   /* visual mode */
319 .me {background: #CCF}   /* key mode */
320
321 .ci[onclick]:hover {background: #5ED}
322 .mi[onclick]:hover {background: #F97}
323 .mo[onclick]:hover {background: #F88}
324 .me[onclick]:hover {background: #99F}
325 .mv[onclick]:hover {background: #D9D}
326 .co[onclick]:hover {background: #EE4}
327
328 .no {
329         background: #EEE;
330 }
331 ul.keys li.ni {
332         border: 0;
333         padding: 1px; /* same size as borderlessless keys */
334 }
335
336 dl.legend dt.vim,
337 ul.keys li.vim {
338         border-style: dashed;
339         -moz-border-radius: 0; /* incompatible with border-style */
340 }
341 dl.legend dt.vim7,
342 ul.keys li.vim7 {
343         border-style: dotted;
344         -moz-border-radius: 0;
345 }
346
347 /* l/r help columns */
348
349 .help {
350         display: table;
351         width: 100%;
352 }
353 .help > * {
354         display: table-cell;
355         width: 20%;
356         vertical-align: top;
357 }
358
359 .left dl.legend {
360         margin-left: 6.4em; /* a bit over 6.2em to allow for borders+padding (border-sizing would work too) */
361 }
362 .left dl.legend dt {
363         margin-left: -6.4em; /* msie<=6 multiply this by two for some reason */
364         float: left;
365         clear: left;
366 }
367 .left dl.legend dd {
368         float: left; /* align next to dt (except msie<=7 does just the opposite) */
369 }
370 .right dl.legend {
371         margin-right: 6.4em;
372 }
373 .right dl.legend dt {
374         margin-right: -6.4em;
375         float: right;
376         clear: right;
377 }
378 .right dl.legend dd {
379         float: right;
380 }
381 .right {
382         text-align: right;
383 }
384
385 /* help/legend */
386
387 dl.legend dt {
388         margin: 0 0 1px; /* distinct keys */
389         height: auto; /* not key-height */
390         padding: 2px 0;
391 }
392 dl.legend dd {
393         margin: 3px 0.4em 0; /* align text (add dt border+padding height) */
394 }
395
396 dl.legend-options dt {
397         background: #CCC;
398 }
399
400 ul.legend-set {
401         clear: right;
402         padding-top: 1ex;
403 }
404 ul.legend-set li {
405         margin: 6px 0; /* similar to dl legends */
406 }
407
408 .legend {
409         margin-top: 1em;
410 }
411 .legend table {
412         width: 100%;
413 }
414 .legend td {
415         padding: 0 0.2em;
416 }
417
418 /* printing hints */
419
420 @page {
421         size: landscape;
422         margin: 0;
423 }
424
425 @media print {
426         ul.legend-set {display: none} /* current options only relevant on dynamic media */
427 }
428