X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/91ec73ba0c8f8a63992dcaa04695784bc917d972..43d481448a3819d58326be4587eadbedcf486e46:/base.css diff --git a/base.css b/base.css index 6f34ef1..97d8128 100644 --- a/base.css +++ b/base.css @@ -132,15 +132,28 @@ h2 small { 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) */ @@ -722,6 +735,8 @@ figure img { .gallery figure { overflow: hidden; box-sizing: border-box; + hyphens: auto; + max-width: 900px; } .gallery figcaption > small { display: inline-block; @@ -736,7 +751,7 @@ figure 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;