From 7811aed71dfebf725a79750830c210382cc8f486 Mon Sep 17 00:00:00 2001 From: Markus Graf Date: Sun, 10 May 2026 22:16:07 +0200 Subject: [PATCH] style: Emphasize blockquotes for clearer quoting --- assets/scss/_custom.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/assets/scss/_custom.scss b/assets/scss/_custom.scss index e9399f9..cd13952 100644 --- a/assets/scss/_custom.scss +++ b/assets/scss/_custom.scss @@ -19,6 +19,21 @@ } } +// Emphasize blockquotes +blockquote { + border-left: 4px solid $link-color; + padding: 1rem 1.25rem; + margin: 1.5rem 0; + background-color: #f8f9fa; + font-style: italic; + border-radius: 0 0.25rem 0.25rem 0; + color: #495057; + + p:last-child { + margin-bottom: 0; + } +} + // Ensure images inside markdown content are responsive article img, main img { max-width: 100%;