diff options
Diffstat (limited to 'includes/stylesheet.css')
-rw-r--r-- | includes/stylesheet.css | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/includes/stylesheet.css b/includes/stylesheet.css index 1fbee17..fdefbae 100644 --- a/includes/stylesheet.css +++ b/includes/stylesheet.css @@ -98,12 +98,16 @@ article ul { } article ul li { - padding-left: 16px; + padding: 0.5em; } article ul li:before { content: "➙"; - padding-right: 8px; + padding-right: 0.5em; +} + +article ol li { + padding: 0.5em; } p img { @@ -122,3 +126,18 @@ iframe { margin-left: auto; margin-right: auto; } + +.list { + overflow-x: auto; +} + +.list table { + width: 100%; +} + +.list td, +th { + padding: 0.5em; + text-align: left; + border-bottom: 1px solid var(--charcoal); +} |