From 3ddad0a0addfcf0761eddec48467152252d19f7d Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Sat, 16 Sep 2023 22:16:03 +0100 Subject: add ability to hide checklist (no js!) --- static/style.css | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'static') diff --git a/static/style.css b/static/style.css index 039c62c..e4e3ebd 100644 --- a/static/style.css +++ b/static/style.css @@ -455,9 +455,18 @@ iframe { margin: 2vw 0; } +input[type=checkbox]:checked~ul { + display: none; +} + +.checklist p { + display: inline; +} + .checklist ul { list-style-type: none !important; padding: 0; + margin-bottom: 0; } code { -- cgit