From 10906a126b4885548dc6b7cd3ebd42a67bcf3ef5 Mon Sep 17 00:00:00 2001 From: Eorn Date: Wed, 15 Apr 2020 17:46:37 +0200 Subject: [PATCH] decrease tags-list width --- static/css/style.css | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index b06a83b..041d5ea 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -300,6 +300,8 @@ a:hover { } .page-content .tags-list { float: right; + max-width: 40%; + text-align: right; } article .post-content { @@ -311,7 +313,7 @@ article .post-content { list-style: none; } .page-content ul li{ - margin-left: 10px; + margin-left: 20px; } .page-content ul li::before { content: "\2022"; @@ -321,15 +323,22 @@ article .post-content { width: 0.75em; margin-left: -0.5em; } +.page-content li ul { + margin-left: 20px; +} .page-content ol { margin-left: 20px; - list-style: decimal; + list-style-type: decimal; + list-style-color: #53bcdf; } .page-content ol li{ margin-left: 10px; } +.page-content ol li::before{ + content: none; +} .page-content em { @@ -398,5 +407,4 @@ figure img { #navbar { min-height: 75px; } - }