From 5100c96a7d21a0c117578fc60cfec213f3fddb47 Mon Sep 17 00:00:00 2001 From: DrMaxNix Date: Sat, 27 Jul 2024 18:58:08 +0200 Subject: [PATCH] :lipstick: support usage of ul and ol --- page/style.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/page/style.css b/page/style.css index 3760c24..ec401b8 100644 --- a/page/style.css +++ b/page/style.css @@ -70,10 +70,19 @@ body { font-size: 0; font-family: "Ubuntu", sans-serif; } -span { +span, li::marker { display: block; font-size: 1rem; } +ul, ol { + display: flex; + flex-direction: column; + flex-wrap: nowrap; + gap: 1rem; +} +ul > li, ol > li { + text-align: start; +} a { text-decoration: none; }