X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/02aff73f80ccbf7d050280af1114f0e663c6d4dd..378a4a965686565a5b1431e23545bf1b6b79d38f:/base.css diff --git a/base.css b/base.css index d726d0e..41742e3 100644 --- a/base.css +++ b/base.css @@ -1,15 +1,10 @@ -/* media features */ - -@import url(terse.css) all and (max-width: 80em); - -@import url(mono.css) all and (monochrome); - /* general */ body { background: #FFF; color: #000; font-size: 90%; + text-align: center; } a, a:visited { color: #000; @@ -23,12 +18,11 @@ a:active, a:hover { /* common sections */ h1, h2 { - text-align: center; font-size: 200%; margin: 0; } h2, caption { - font-size: 125%; + font-size: 110%; font-weight: bold; } caption { @@ -42,15 +36,23 @@ hr { margin: 0; } -.diinfo h2 { +.section ul { + margin-bottom: 1ex; +} +.section h2 { margin: 0 1ex; clear: both; - font-size: 110%; - text-align: left; +} +.section table { + float: left; + position: relative; /* prevents buggy hovering in table if caption present in gecko */ + margin: 1ex 1ex 2ex; +} +#charset .section table { + margin: -0.5ex 0 1ex; /* headers provide sufficient spacing already */ } p { - text-align: center; margin: 1ex 0 1em; } p.aside { @@ -69,6 +71,11 @@ ul { list-style: none; } +#source pre { + display: inline-block; + text-align: left; +} + /* "keyboard" (list of keys) */ ul#rows {margin-top: -5ex} /* top (esc) row fits besides header */ @@ -91,6 +98,14 @@ li.row ul ul { h3 {display: none} /* semantic details (non-css/js) */ li.mode {display: none} /* initially hidden (only show interactively (js)) */ +#rows { + width: 82.5em; /* 12 * (2px + 1px + 6.2em + 1px + 2px) + 8em*/ + padding-right: 72px; +} +#rows > li { + margin-right: -72px; +} + /* individual keys */ dl.legend dt, @@ -124,6 +139,13 @@ ul.keys li b[title] { /* mnemonic hover */ ul.keys li[onclick]:hover { /* link */ cursor: pointer; } +ul.keys li a { /* key link */ + color: inherit; + text-decoration: none; + display: block; + height: 100%; +} + ul.keys.meta li b, ul.keys.ctrl li b, ul.keys.lead li b { /* char with ctrl or leading key */ @@ -136,56 +158,56 @@ ul.keys.ctrl li b small { /* meta key indicator */ font-weight: normal; /* nice and subtle */ } -/* character table */ +/* tables */ -li table { - float: left; - position: relative; /* prevents buggy hovering if table-caption present in gecko */ -} - -table.glyphs { +table { border-collapse: collapse; } -.glyphs thead th, .glyphs td { - text-align: center; - width: 1.6em; /* regular interval */ -} -.glyphs th, .glyphs td { +th, td { border-color: #778; border: 1px solid #888; background: #DDD; } +thead th, td { + text-align: center; +} + +/* character table */ + +.glyphs thead th, .glyphs td { + width: 1.6em; /* regular interval */ +} .glyphs tbody td { font-size: 112%; } +.glyphs.big tbody td { + font-size: 200%; +} .glyphs .glyphs { margin: 0.5ex 0; } .glyphs .glyphs td { font-size: 100%; } -.glyphs.charmap tbody td { - font-size: 200%; -} /* table headers */ -.glyphs th, -.glyphs thead td { +th, +thead td { border: 0; background: transparent !important; } .glyphs thead td { width: auto; /* no glyph cells in header */ } -.glyphs th { +th { padding: 0 0.2em; } -.diinfo .glyphs th { +.diinfo th { font-size: 50%; /* mostly insignificant here */ font-weight: normal; } -.diinfo .glyphs tbody th { +.diinfo tbody th { text-align: right; /* variable width so keep near cells */ padding: 0 0.5em; } @@ -223,11 +245,6 @@ table.glyphs.dimap { overflow: hidden; } -.diinfo table.glyphs { - margin: 1ex 1ex 2ex; - float: left; -} - /* glyph cell overlay (digraph labels) */ .glyphs.dilabel td { @@ -292,7 +309,7 @@ td.Mn {background: #ACC} /* modifier */ td.Cc, td.Cf {color: #666; background: #BBB} /* control */ td.Zs {background: #ACB} /* space */ td.Zs span {background: #EEE} -td.Co {background: #A99} /* private */ +td.Co {background: #DCC} /* private */ td.Xi, td.Cs {background: #CCC} /* invalid */ td.Xd {color: #844} /* deprecated */ td.Xr {color: #888} /* reserved (digraph reverse or proposal) */ @@ -307,14 +324,16 @@ td.di-a {background: #EFD} /* ascii */ td.di-rare {background: #EEE} /* disfavoured */ td.di-invalid {background: #BBB} /* impossible */ -/* continents */ -td.c-af {background: #FFC} -td.c-eu {background: #FDC} -td.c-as {background: #FDD} -td.c-oc {background: #EEDDF4} -td.c-aa {background: #E3E8FF} -td.c-sa {background: #DFF} -td.c-na {background: #DFD} +/* code syntax */ +.sy-comment { color: #888 } +.sy-constant { color: #008 } +.sy-type, +.sy-identifier { color: #804 } +.sy-statement { } +.sy-preProc { } +.sy-special { color: #408 } +.sy-error { font-weight: bold; background-color: #F00; color: #FFF } +.sy-todo { background-color: #FF0 } /* hover effects */ td.di-d, @@ -356,22 +375,39 @@ td.di-a:hover {background: #CF8} /* key type colorization */ +td.c-na, .pm {background: #BFB} /* motion */ .po {background: #DFA} /* window */ +td.c-af, .co {background: #FFA} /* command */ +td.c-sa, .ci {background: #BFE} /* info */ +td.c-eu, .cp {background: #FDA} /* TODO */ .mi {background: #FCA} /* insert mode */ +td.c-as, .mo {background: #FCC} /* mode */ +td.c-aa, .mv {background: #ECE} /* visual mode */ +td.c-oc, .me {background: #CCF} /* key mode */ -.ci[onclick]:hover {background: #5ED} -.mi[onclick]:hover {background: #F97} -.mo[onclick]:hover {background: #F88} -.me[onclick]:hover {background: #99F} -.mv[onclick]:hover {background: #D9D} -.co[onclick]:hover {background: #EE4} +td.c-na:hover, +.pm a:hover, .pm[onclick]:hover {background: #7E7} +.po a:hover, .po[onclick]:hover {background: #CE6} +td.c-sa:hover, +.ci a:hover, .ci[onclick]:hover {background: #5ED} +td.c-eu:hover, +.cp a:hover, .cp[onclick]:hover {background: #FA6} +.mi a:hover, .mi[onclick]:hover {background: #F97} +td.c-as:hover, +.mo a:hover, .mo[onclick]:hover {background: #F88} +td.c-oc:hover, +.me a:hover, .me[onclick]:hover {background: #99F} +td.c-aa:hover, +.mv a:hover, .mv[onclick]:hover {background: #D9D} +td.c-af:hover, +.co a:hover, .co[onclick]:hover {background: #EE4} .no { background: #EEE; @@ -381,6 +417,14 @@ ul.keys li.ni { padding: 1px; /* same size as borderlessless keys */ } +dl.legend dt.more, +ul.keys li.more b { + text-shadow: #F20 0 0 0.1em; +} +dl.legend dt.more:hover, +ul.keys li.more:hover b { + text-shadow: #F20 0 0 0.5em, #FC0 0 0 0.2em; +} dl.legend dt.ext, ul.keys li.ext { border-style: dashed;