aboutsummaryrefslogtreecommitdiff
path: root/theme/static/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'theme/static/styles.css')
-rw-r--r--theme/static/styles.css20
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); }