From 937ef0772543fe6fcc76b0d034d6d71a9091a493 Mon Sep 17 00:00:00 2001 From: Marvin Johanning Date: Mon, 6 Dec 2021 18:56:26 +0100 Subject: [PATCH] Dark mode fix separators --- CSS/styles.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CSS/styles.css b/CSS/styles.css index 3072d01..ec06518 100644 --- a/CSS/styles.css +++ b/CSS/styles.css @@ -57,6 +57,10 @@ blockquote { background: #000000; } + .separator::before, + .separator::after { + border-bottom: 1px solid white; + } } /* Light mode */ @@ -68,6 +72,10 @@ blockquote { background: #f9f9f9; } + .separator::before, + .separator::after { + border-bottom: 1px solid #000; + } } /* merriweather-regular - latin */ @@ -689,7 +697,6 @@ div.heading-greek { .separator::after { content: ''; flex: 1; - border-bottom: 1px solid #000; } .separator:not(:empty)::before {