diff options
| author | Christian Cleberg <[email protected]> | 2026-02-05 18:13:22 -0600 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-02-05 18:13:22 -0600 |
| commit | 00ffeda65e487d09dd47df553cedff4bd1f9291d (patch) | |
| tree | 885f348ea53a3f730582b8c5d90c82b30f330970 /theme/static/styles.css | |
| parent | 84e40b4c121277c87243cd82ec24eed3578cd57b (diff) | |
| download | cleberg.net-00ffeda65e487d09dd47df553cedff4bd1f9291d.tar.gz cleberg.net-00ffeda65e487d09dd47df553cedff4bd1f9291d.tar.bz2 cleberg.net-00ffeda65e487d09dd47df553cedff4bd1f9291d.zip | |
update blockquote styling
Diffstat (limited to 'theme/static/styles.css')
| -rw-r--r-- | theme/static/styles.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/theme/static/styles.css b/theme/static/styles.css index fe9cb60..b68d2c4 100644 --- a/theme/static/styles.css +++ b/theme/static/styles.css @@ -66,6 +66,26 @@ th { background: var(--fg); color: var(--bg); text-transform: uppercase; font-si pre { padding: 1rem; border: 1px solid var(--border); background: var(--code-bg); overflow-x: auto; } code { background: var(--code-bg); padding: 0.2rem 0.4rem; } +/* Blockquote styling */ +blockquote { + background-color: #f3f3f3; + font-style: italic; + margin: 1.5em 0; + padding: 0; +} +blockquote p { margin: 0; } +blockquote::before { + content: "#+begin_quote"; + display: block; + color: #7f7f7f; +} + +blockquote::after { + content: "#+end_quote"; + display: block; + color: #7f7f7f; +} + /* --- Accessibility & Efficiency --- */ img { max-width: 100%; height: auto; filter: grayscale(1); } img:hover { filter: grayscale(0); } |
