From a3a4b3c7791fbcd763bd688cc6492bc651ceba3d Mon Sep 17 00:00:00 2001 From: David Eisinger Date: Tue, 30 May 2023 15:36:43 -0400 Subject: [PATCH] list/blockquote styles --- themes/v2/assets/css/style.scss | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/themes/v2/assets/css/style.scss b/themes/v2/assets/css/style.scss index b572435..2e284b1 100644 --- a/themes/v2/assets/css/style.scss +++ b/themes/v2/assets/css/style.scss @@ -26,27 +26,26 @@ hr { } ul { - list-style-type: '∗'; - margin-left: 1ch; + list-style: none; + margin-left: 2ch; padding: 0; + text-indent: -2ch; - li { - padding-left: 1ch; + li::before { + color: #aaa; + content: '∗'; + margin: 0 1ch 0 0; } } blockquote { margin: 0 2ch 0 0; font-style: italic; - - &::before { - content: "“"; - position: absolute; - } + border-left: 1ch solid #ddd; p { width: 100%; - margin-left: 2ch; + margin-left: 1ch; } }