commit 9bbf797bbfc7dbbb5fe2c1f19673cb8b52702691
parent e57f30ee3979f7c5a839f63129da53e442ad1173
Author: Dan Callaghan <djc@djc.id.au>
Date: Sun, 19 Oct 2025 22:17:02 +1100
fix misaligned bulleted lists
Diffstat:
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/stylesheets/stylesheet.css b/stylesheets/stylesheet.css
@@ -139,18 +139,20 @@ dt {
font-weight: bold;
}
+ul {
+ padding-left: 32px;
+}
ul li {
list-style: none;
}
-
ul li:before {
content: ">>";
- font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
font-size: 13px;
color: #b5e853;
- margin-left: -37px;
- margin-right: 21px;
+ margin-left: -32px;
line-height: 16px;
+ display: inline-block;
+ width: 32px;
}
blockquote {