cmc/cleberg.net

My personal web garden & blog.

clone: git clone https://gitbay.org/cmc/cleberg.net.git

00ffeda65e487d09dd47df553cedff4bd1f9291d

unsigned

author: Christian Cleberg <hello@cleberg.net> · 2026-02-06T00:13:22Z

update blockquote styling
 theme/static/styles.css | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

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); }