word: sitewide styling of images gallery
[sheet.git] / word.plp
index 45525720399ab8ded056e0152050c5ea864e76f9..1af9c75cc9075bc496d739b688f57a444552c270 100644 (file)
--- a/word.plp
+++ b/word.plp
@@ -13,52 +13,8 @@ Html({
        data => [$wordlist],
        raw => <<'EOT',
 <style>
-ul {
-       display: grid;
-       grid: auto-flow dense / repeat(auto-fit, minmax(200px, 1fr));
-       grid-gap: 1px;
-}
-li, ul ul {
-       display: contents;
-}
-figure {
-       overflow: hidden;
-       box-sizing: border-box;
-}
-figcaption > small {
-       display: inline-block;
-}
-
-li.large > figure {
-       grid-row: span 2;
-       grid-column: span 2;
-}
-@media (min-width: 600px) and (min-height: 400px) {
-       p + ul > li:first-child > figure {
-               grid-row: span 3;
-               grid-column: span 3;
-       }
-}
-
-figure:hover ~ ul figure,
-figure:hover ~ ul figcaption {
-       background: #CCC;
-       color: #000;
-}
-figure:hover ~ ul figcaption {
-       background: rgba(255, 255, 255, .5);
-}
-
-figure, figcaption {
-       transition: all .5s ease-in;
-}
-li.parent:hover > figure > figcaption,
-figure:hover > figcaption {
-       font-size: 175%;
-       right: 50%;
-       bottom: 50%;
-       transform: translate(50%, 50%);
-       margin-left: -60%; /* keep width */
+body {
+       margin: 8px 1px;
 }
 </style>
 EOT
@@ -112,4 +68,6 @@ sub printimgs {
        say '</ul>';
 }
 
+say '<section class="gallery">';
 printimgs(@{$table->{''}});
+say '</section>';