davideisinger.com

My personal website
Log | Files | Refs | README

commit a3a4b3c7791fbcd763bd688cc6492bc651ceba3d
parent 34abb94c25fba29ad3600f300d56491bc46f1d95
Author: David Eisinger <[email protected]>
Date:   Tue, 30 May 2023 15:36:43 -0400

list/blockquote styles

Diffstat:
Mthemes/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 @@ -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; } }