From 755f98a2e20b963ecd3756414feb5fc07c612b7d Mon Sep 17 00:00:00 2001 From: Shadowfacts Date: Tue, 11 Jan 2022 14:34:36 -0500 Subject: [PATCH] Add blockquote style --- Reader/read.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Reader/read.css b/Reader/read.css index def5c4f..aa1f06a 100644 --- a/Reader/read.css +++ b/Reader/read.css @@ -46,6 +46,15 @@ pre { tab-size: 4; } +blockquote { + border-left: 4px solid var(--tint-color); + margin-left: 0; + margin-right: 0; + padding: 0 20px; + color: gray; + font-style: italic; +} + #item-info { margin-bottom: 1em; }