From 7a09ddbf2b83251885c73ac28baf1d0c668eefe6 Mon Sep 17 00:00:00 2001 From: inference Date: Fri, 10 Mar 2023 03:52:27 +0000 Subject: [PATCH] Add unordered list formatting. --- inf.css | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/inf.css b/inf.css index 8117b7a..b41dbd1 100644 --- a/inf.css +++ b/inf.css @@ -3,7 +3,7 @@ /* Copyright 2022-2023 Jake Winters */ /* SPDX-License-Identifier: BSD-3-Clause-Clear */ -/* Version: 4.0.0.13 */ +/* Version: 5.0.0.14 */ h1, .h1 { @@ -76,6 +76,19 @@ a { text-decoration: none; } +ul { + list-style: none; +} + +ul li::before { + content: "\2022"; + margin-left: -1em; + display: inline-block; + width: 1em; + font-weight: bold; + color: #ffffff; +} + table, th, td { border: 2px solid; border-collapse: collapse;