diff options
author | Alex Scerba <alex@scerba.org> | 2024-09-09 18:09:45 -0400 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2024-09-09 18:09:45 -0400 |
commit | e6764e30162f965195573bf1af202762a3280181 (patch) | |
tree | a1526f51ce5f1cb36ee818005a141a0390e31884 | |
parent | d68fac31d01aec82bba8114a70e009d1b9801966 (diff) |
Break up multiple images in a single figure
-rw-r--r-- | static/style.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index c9ff821..5f27970 100644 --- a/static/style.css +++ b/static/style.css @@ -242,6 +242,10 @@ figure { margin: 2rem auto;
}
+figure img:not(:first-child) {
+ margin-top: 2rem;
+}
+
figcaption {
font-style: italic;
color: rgb(177, 177, 177);
|