word: hover gallery captions only on larger screens
authorMischa POSLAWSKY <perl@shiar.org>
Sat, 19 Feb 2022 15:37:07 +0000 (16:37 +0100)
committerMischa POSLAWSKY <perl@shiar.org>
Tue, 1 Mar 2022 20:02:26 +0000 (21:02 +0100)
base.css

index 0149f2fd7f5bf504e366fa9bdab7e4015438de5f..8738378e6ce724036f8535ba991fcf4817d70f52 100644 (file)
--- a/base.css
+++ b/base.css
@@ -671,21 +671,33 @@ figure {
        margin: 0;
        position: relative;
 }
        margin: 0;
        position: relative;
 }
-figcaption {
-       position: absolute;
-       padding: 0 1em;
-       color: #000;
-       background: rgba(255, 255, 255, .66);
-       right: 0;
-       bottom: 0;
-       max-width: 100%;
-       box-sizing: border-box;
-}
 img {
        vertical-align: bottom;
        width: 100%;
 }
 
 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 {
 /* image gallery */
 
 .gallery {
@@ -729,16 +741,6 @@ img {
        background: rgba(0, 0, 0, .5);
 }
 
        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 */
-}
-
 body#word {
        margin: 8px 1px;
 }
 body#word {
        margin: 8px 1px;
 }