From d3cbf732da80b6692b86861faf5876fe09aa7ab6 Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Wed, 2 Jul 2025 15:31:19 +0200 Subject: [PATCH] Indent blockquotes Ideally we'd also put a line on the left to more clearly mark it as a blockquote, but this will at least make it easier to distinguish blockquotes from other text. --- css/epub.css | 4 ++++ css/html.css | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/css/epub.css b/css/epub.css index 1d9fca06..73dd2938 100644 --- a/css/epub.css +++ b/css/epub.css @@ -29,6 +29,10 @@ h4, p, blockquote, dl { margin: 1.12em 0; } +blockquote { + margin-left: 1em; +} + h5 { font-size: 0.83em; margin: 1.5em 0; diff --git a/css/html.css b/css/html.css index d53ee478..28ccb561 100644 --- a/css/html.css +++ b/css/html.css @@ -33,6 +33,10 @@ h4, p, blockquote, dl { margin: 1.12em 0; } +blockquote { + margin-left: 1em; +} + h5 { font-size: 0.83em; margin: 1.5em 0;