From 7db0f2a05c9363c3860158fc6df072c8284b912d Mon Sep 17 00:00:00 2001 From: Gigi Date: Wed, 15 Oct 2025 11:43:33 +0200 Subject: [PATCH] style: make horizontal dividers more subtle with increased padding --- src/styles/components/reader.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/styles/components/reader.css b/src/styles/components/reader.css index 42dc52fa..0bf5ec1f 100644 --- a/src/styles/components/reader.css +++ b/src/styles/components/reader.css @@ -128,6 +128,13 @@ .reader-markdown blockquote p, .reader-html blockquote p { margin: 0.5rem 0; } .reader-markdown blockquote p:first-child, .reader-html blockquote p:first-child { margin-top: 0; } .reader-markdown blockquote p:last-child, .reader-html blockquote p:last-child { margin-bottom: 0; } +/* Horizontal rule - subtle divider */ +.reader-markdown hr, .reader-html hr { + border: none; + border-top: 1px solid var(--color-border); + opacity: 0.3; + margin: 2.5rem 0; +} .reader-markdown a { color: var(--color-primary); text-decoration: none; } .reader-markdown a:hover { text-decoration: underline; } .reader-markdown code { background: var(--color-bg-subtle); border: 1px solid var(--color-border); border-radius: 4px; padding: 0.15rem 0.4rem; font-size: 0.9em; font-family: 'Monaco', 'Menlo', 'Consolas', 'Courier New', monospace; }