From 03474556c2605c3c8dce9b9c2392afe969eccfd5 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Mon, 6 Nov 2023 17:59:22 +0100 Subject: [PATCH] Fancy blockquotes --- style/base.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/style/base.css b/style/base.css index 61ab8ef..bf5c036 100644 --- a/style/base.css +++ b/style/base.css @@ -20,6 +20,7 @@ --font-text: sans-serif; --font-mono: monospace; --math-border-width: 1px; + --blockquote-border-width: 2px; } @media screen { @@ -67,6 +68,15 @@ svg line { stroke-width: var(--edge-width); } +blockquote { + border-left: var(--blockquote-border-width) solid var(--color-accent); + margin-block-start: 0; + margin-block-end: 0; + margin-inline-start: 0; + margin-inline-end: 0; + padding-left: 1.5ex; +} + .math { overflow-x: auto; overflow-y: hidden;