From 00ffeda65e487d09dd47df553cedff4bd1f9291d Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Thu, 5 Feb 2026 18:13:22 -0600 Subject: update blockquote styling --- theme/static/styles.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'theme/static/styles.css') 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); } -- cgit v1.2.3