X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/6200f20ad733db0f13be5dc766249c3c1f500937..a317b63cd771060b1adb44b311360d54af8eb25a:/base.css diff --git a/base.css b/base.css index d728a39..97d8128 100644 --- a/base.css +++ b/base.css @@ -123,24 +123,42 @@ h1 small, h2 small { position: absolute; /* side note; do not influence alignment */ margin-left: 1em; - font-size: 80%; - line-height: 175%; + font-weight: normal; + font-size: 50%; /* 1rem */ + padding-top: 1.75ex; /* align baseline with container */ +} +h2 small { + font-size: 90.9%; + padding-top: .17ex; } +dl { + display: grid; + grid: auto-flow / 1fr 1fr; + clear: both; +} +@media (max-width: 42em) { + dl { + grid: auto-flow / minmax(8em, 1fr) minmax(20em, 1fr); + } +} dl > dt { - float: left; - width: 50%; + grid-column: 1; text-align: right; } +dt code { + white-space: normal; +} dl > dd { + grid-column: 2; text-align: left; padding-left: 1em; - overflow: hidden; + margin: 0; } /* "keyboard" (list of keys) */ -#rows {margin-top: -5ex} /* top (esc) row fits besides header */ +.row0 {margin-top: -5ex} /* top (esc) row fits besides header */ .row2 {margin-left: 7em} /* row offsets relative to ~6em key width */ .row3 {margin-left: 8em} .row4 {margin-left: 10em} /* should actually align to next key on row1 */ @@ -254,6 +272,12 @@ td.joinl { border-left: none; } +thead { + position: sticky; + top: 0; + background: #DDD8; +} + /* character table */ .glyphs thead th, .glyphs td { @@ -671,19 +695,33 @@ figure { margin: 0; position: relative; } -figcaption { - position: absolute; - padding: 0 1em; - color: #000; - background: rgba(255, 255, 255, .66); - right: 0; - bottom: 0; -} -img { +figure img { vertical-align: bottom; width: 100%; } +@media (min-width: 60em) { + figcaption { + padding: 0 1em; + color: #000; + background: rgba(255, 255, 255, .66); + position: absolute; + right: 0; + bottom: 0; + max-width: 100%; + box-sizing: border-box; + } + .gallery li.parent:hover > figure > figcaption, + .gallery figure:hover > figcaption { + /* highlight title of current and parents */ + font-size: 175%; + right: 50%; + bottom: 50%; + transform: translate(50%, 50%); + margin-left: -60%; /* keep width */ + } +} + /* image gallery */ .gallery { @@ -697,6 +735,8 @@ img { .gallery figure { overflow: hidden; box-sizing: border-box; + hyphens: auto; + max-width: 900px; } .gallery figcaption > small { display: inline-block; @@ -711,7 +751,7 @@ img { } @media (min-width: 603px) and (min-height: 400px) { /* fit 3 cells of 200x133 */ - .gallery > ul > li:first-child > figure, + .gallery > li:first-child > figure, .gallery li.huge > figure { grid-row: span 3; grid-column: span 3; @@ -727,14 +767,31 @@ img { background: rgba(0, 0, 0, .5); } -.gallery li.parent:hover > figure > figcaption, -.gallery figure:hover > figcaption { - /* highlight title of current and parents */ - font-size: 175%; - right: 50%; - bottom: 50%; - transform: translate(50%, 50%); - margin-left: -60%; /* keep width */ +/* specialised galleries */ + +body#word { + margin: 8px 1px; +} + +table.gallery { + grid-auto-flow: row; + grid-template-columns: repeat(auto-fit, minmax(2em, max-content)); /* 1fr */ +} +table.gallery tbody, +table.gallery tr { + display: contents; +} +table.gallery tr > :first-child { + grid-column: 1; + -grid-row: span 6; + margin: auto; /* vertical-align: middle */ +} +table.gallery tr > :nth-child(2) { + grid-column: 2; /* in case 1st is missing */ +} +table.gallery td { + border: 0; /* does not collapse */ + outline: 1px solid #888; /* over grid-gap */ } /* page-specific */ @@ -876,6 +933,16 @@ body .magic-perma { /* terse optimisation */ +@media (min-height: 112ex) and (min-width: 90em) { + table.keys { + width: auto; + } + .keys td { + padding: 1ex 0 1ex .1em; + width: 7em; + } +} + @media (max-width: 79em) { .keys td { position: relative; /* hides overflow */