From 6a5d2b184d3c01d12c6af04ad7f0613d5b13525b Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 17 May 2020 15:02:07 -0700 Subject: [PATCH] style: Add some basic support for a bulleted list. It's somewhat surprising that the reset.css even removes all bullets from list items, but there you have it. --- style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/style.css b/style.css index 9f922b6..cde3def 100644 --- a/style.css +++ b/style.css @@ -53,6 +53,12 @@ p,dl,dd { margin-bottom: 1em; } +ul li { + margin-left: 1em; + list-style-type: disc; + margin-bottom: 0.5em; +} + /*\ |*| |*| Overall page layout -- 2.43.0