diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-04-10 17:19:01 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-04-10 17:19:01 +0200 |
commit | 44ab91d7ad867830373acca1e4dc749c4892ed3e (patch) | |
tree | d6dd85d9c9f73df0caa5b961b7aba2d85cf43a48 /static/css | |
parent | website: Replace logos and favicon with SVG originals. (diff) |
website: Style list bullets.
Diffstat (limited to 'static/css')
-rw-r--r-- | static/css/main.css | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css index 2c073c7..5565423 100644 --- a/static/css/main.css +++ b/static/css/main.css | |||
@@ -322,5 +322,30 @@ audio, video, .full-width { | |||
322 | max-width: 100%; | 322 | max-width: 100%; |
323 | } | 323 | } |
324 | 324 | ||
325 | article ul { | ||
326 | padding-left: 0; | ||
327 | list-style-type: none; | ||
328 | list-style-position: outside; | ||
329 | margin-top: 0.5rem; | ||
330 | margin-bottom: 0.5rem; | ||
331 | } | ||
332 | |||
333 | article ul li + li { | ||
334 | margin-top: 1em; | ||
335 | } | ||
336 | |||
337 | article ul li::before { | ||
338 | display: inline-block; | ||
339 | content: "\2022"; | ||
340 | padding-right: 0; | ||
341 | width: 35px; | ||
342 | margin-left: -35px; | ||
343 | color: #118ab2; | ||
344 | vertical-align: middle; | ||
345 | font-size: 80px; | ||
346 | line-height: 22px; | ||
347 | font-weight: bold; | ||
348 | } | ||
349 | |||
325 | #footer-box a { color: #333333; } | 350 | #footer-box a { color: #333333; } |
326 | #footer-box a:visited { color: #333333; } | 351 | #footer-box a:visited { color: #333333; } |