latin: unistrokes circles matched separately
[sheet.git] / base.css
index 6476c812ff974e5b8e2387ec12622e45f0f13bf7..cc3625f6efeeb34b071db322fc8d051c03df6582 100644 (file)
--- a/base.css
+++ b/base.css
@@ -115,10 +115,16 @@ body > pre {
        border-style: solid;
        white-space: pre;
 }
+code {
+       white-space: nowrap;
+}
 
+h1 small,
 h2 small {
        position: absolute; /* side note; do not influence alignment */
        margin-left: 1em;
+       font-size: 80%;
+       line-height: 175%;
 }
 
 dl > dt {
@@ -134,7 +140,7 @@ dl > dd {
 
 /* "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 */
@@ -248,6 +254,12 @@ td.joinl {
        border-left: none;
 }
 
+thead {
+       position: sticky;
+       top: 0;
+       background: #DDD8;
+}
+
 /* character table */
 
 .glyphs thead th, .glyphs td {
@@ -659,6 +671,109 @@ ul.legend-set li {
        padding: 0 0.2em;
 }
 
+/* images */
+
+figure {
+       margin: 0;
+       position: relative;
+}
+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 {
+       display: grid;
+       grid: auto-flow dense / repeat(auto-fit, minmax(200px, 1fr));
+       grid-gap: 1px;
+}
+.gallery li, .gallery ul {
+       display: contents;
+}
+.gallery figure {
+       overflow: hidden;
+       box-sizing: border-box;
+}
+.gallery figcaption > small {
+       display: inline-block;
+}
+
+@media (min-width: 403px) and (min-height: 266px) {
+       /* able to fit 2 cells of 200x133 */
+       .gallery li.large > figure {
+               grid-row: span 2;
+               grid-column: span 2;
+       }
+}
+@media (min-width: 603px) and (min-height: 400px) {
+       /* fit 3 cells of 200x133 */
+       .gallery > ul > li:first-child > figure,
+       .gallery li.huge > figure {
+               grid-row: span 3;
+               grid-column: span 3;
+       }
+}
+
+.gallery figure, .gallery figcaption {
+       transition: all .5s ease-in;
+}
+.gallery figure:hover ~ ul figcaption {
+       /* mark all children */
+       color: #FFF;
+       background: rgba(0, 0, 0, .5);
+}
+
+/* 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 */
 
 #browser td > a {
@@ -798,6 +913,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 */