From 865a4da55362f057d20fcebedff1957fce49f7db Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 14 Apr 2021 23:53:52 +0200 Subject: css: Use em-size for bullets. This avoids huge overlapping bullets when webfonts are blocked. Reported by Mark Wielaard. --- static/css/main.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index b2f4fe6..6e5650d 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -345,11 +345,11 @@ article ul li::before { display: inline-block; content: "\2022"; padding-right: 0; - width: 35px; - margin-left: -35px; + width: 30px; + margin-left: -30px; color: #118ab2; vertical-align: middle; - font-size: 80px; + font-size: 2em; line-height: 22px; font-weight: bold; } -- cgit v1.2.1