diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2024-03-27 07:52:57 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2024-03-27 07:52:57 +0200 |
| commit | 0c89e378e2a96881247520dec96842ffa99bb0d9 (patch) | |
| tree | 632dcf691c5b45ad332e3f7abf6a96aff8d02e0f /static/style.css | |
| parent | 99c08e92f54b75d1acdf754b42953985135ce6d7 (diff) | |
Improve text colors, layout
Diffstat (limited to 'static/style.css')
| -rw-r--r-- | static/style.css | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/static/style.css b/static/style.css index d6ee94d..729121b 100644 --- a/static/style.css +++ b/static/style.css @@ -124,12 +124,6 @@ pre, div.sourceCode { background-color: var(--code-bg-color); } -img { - max-width: 100%; - width: 100%; - margin: 20px 0; -} - blockquote { display: block; background-color: var(--blockquote-bg-color); @@ -139,6 +133,12 @@ blockquote { quotes: "\201C""\201D""\2018""\2019"; } +img { + max-width: 100%; + width: 100%; + margin: 20px 0; +} + figure { max-width: 100%; padding: 0; @@ -146,6 +146,15 @@ figure { display: block; } +figure img { + margin-bottom: 10px; +} + +figure figcaption { + margin-bottom: 10px; + color: var(--blockquote-color); +} + hr { background: none !important; height: 0; @@ -160,5 +169,5 @@ hr { } small { - color: grey; + color: var(--blockquote-color); } |
