From: Mischa POSLAWSKY Date: Sun, 14 Jun 2020 12:05:25 +0000 (+0200) Subject: word: sitewide styling of images gallery X-Git-Tag: v1.13~211 X-Git-Url: http://git.shiar.nl/sheet.git/commitdiff_plain/6fcc37bb969a9298ef5ad850d8b8361fe6ca3a5a word: sitewide styling of images gallery Move page styling to base stylesheet with gallery class. --- diff --git a/base.css b/base.css index 3c00aa4..30d8bc4 100644 --- a/base.css +++ b/base.css @@ -671,7 +671,8 @@ figure { figcaption { position: absolute; padding: 0 1em; - background: rgba(0, 0, 0, .5); + color: #000; + background: rgba(255, 255, 255, .66); right: 0; bottom: 0; } @@ -680,6 +681,59 @@ img { width: 100%; } +/* 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); +} + +.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 */ +} + /* page-specific */ #browser td > a { diff --git a/common.inc.plp b/common.inc.plp index b8dac37..dd41751 100644 --- a/common.inc.plp +++ b/common.inc.plp @@ -78,7 +78,7 @@ sub stylesheet { return map { sprintf( '', - $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "/$_.css?1.11", $_ + $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "/$_.css?1.12", $_ ) } @avail; } diff --git a/dark.css b/dark.css index 243960c..e7df58b 100644 --- a/dark.css +++ b/dark.css @@ -108,6 +108,18 @@ th, td { .legend .ex:hover {background: #666} .X:hover small {color: #FFF} +/* images */ + +figcaption { + color: #FFF; + background: rgba(0, 0, 0, .5); +} +.gallery figure:hover ~ ul figcaption { + /* mark all children */ + color: #000; + background: rgba(255, 255, 255, .5); +} + /* starcraft */ .units tbody tr:hover:not(.race) { diff --git a/word.plp b/word.plp index 59bf8ca..1af9c75 100644 --- a/word.plp +++ b/word.plp @@ -13,58 +13,9 @@ Html({ data => [$wordlist], raw => <<'EOT', EOT }); @@ -117,4 +68,6 @@ sub printimgs { say ''; } +say '';