From 9fdb56f40b377905914b9f410cde016ef115fcdd Mon Sep 17 00:00:00 2001 From: handlerug Date: Wed, 7 Jul 2021 22:28:28 +0700 Subject: [PATCH] To-do lists styles --- static/default.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/static/default.css b/static/default.css index a4503b9..1d37b1b 100644 --- a/static/default.css +++ b/static/default.css @@ -552,3 +552,16 @@ kbd { .recent-changes__entry__time { font-weight: bold; } + +/* + * To-do lists + */ +.item_todo { + position: relative; + list-style: none; +} +.item_todo > input[type=checkbox] { + position: absolute; + left: -1.6rem; + top: .1rem; +}