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