Style ordered and unordered plain lists.

This commit is contained in:
Tom Alexander
2023-12-21 15:31:13 -05:00
parent 5af4a372ae
commit efbf6cfc0c
2 changed files with 19 additions and 3 deletions

View File

@@ -103,6 +103,22 @@ body {
font-size: 1.5rem;
font-weight: 500;
}
.plain_list {
&.unordered {
list-style-type: disc;
padding-left: 2.5rem;
}
&.ordered {
list-style-type: decimal;
padding-left: 2.5rem;
}
&.descriptive {
}
}
}
/* A stand-alone blog post (not in a blog stream). */