From 94f34c3d22582ac60024bd81d925c9812dc3a5ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Mitrovi=C4=87?= Date: Tue, 16 Aug 2022 01:33:58 +0200 Subject: [PATCH] Adding table and blockquote styles to CSS. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Dušan Mitrović --- static/css/style.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/static/css/style.css b/static/css/style.css index 25b4424..23c786e 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -302,6 +302,30 @@ header { color: var(--red); } +.post-content h3 { + color: var(--red); +} + +.post-content blockquote { + font-style: italic; + border-left: 5px solid var(--red); + padding-left: 1rem; + margin: 2rem 0; +} + +.post-content blockquote cite { + color: var(--red); +} + +.post-content table, th, td { + border: 2px solid var(--foreground); + border-collapse: collapse; +} + +.post-content th, td { + padding: 1rem; +} + .post-content ul, ol { list-style-position: inside; -- 2.45.2