Add unordered list formatting.

This commit is contained in:
inference 2023-03-10 03:52:27 +00:00
parent b520bd5c18
commit eff67e1b4f
Signed by: inference
SSH Key Fingerprint: SHA256:9Pl0nZ2UJacgm+IeEtLSZ4FOESgP1eKCtRflfPfdX9M

15
inf.css
View File

@ -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;