diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-04-14 23:53:52 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-04-15 10:47:34 +0200 |
commit | 865a4da55362f057d20fcebedff1957fce49f7db (patch) | |
tree | 49537f2692826080ee74300bcab2a789d45e2be4 /static/css | |
parent | index: Add missing comma. (diff) |
css: Use em-size for bullets.
This avoids huge overlapping bullets when webfonts are blocked.
Reported by Mark Wielaard.
Diffstat (limited to 'static/css')
-rw-r--r-- | static/css/main.css | 6 |
1 files 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 { | |||
345 | display: inline-block; | 345 | display: inline-block; |
346 | content: "\2022"; | 346 | content: "\2022"; |
347 | padding-right: 0; | 347 | padding-right: 0; |
348 | width: 35px; | 348 | width: 30px; |
349 | margin-left: -35px; | 349 | margin-left: -30px; |
350 | color: #118ab2; | 350 | color: #118ab2; |
351 | vertical-align: middle; | 351 | vertical-align: middle; |
352 | font-size: 80px; | 352 | font-size: 2em; |
353 | line-height: 22px; | 353 | line-height: 22px; |
354 | font-weight: bold; | 354 | font-weight: bold; |
355 | } | 355 | } |