diff options
Diffstat (limited to 'www/assets/res')
-rw-r--r-- | www/assets/res/css/base.css | 2 | ||||
-rw-r--r-- | www/assets/res/css/todos.css | 25 |
2 files changed, 10 insertions, 17 deletions
diff --git a/www/assets/res/css/base.css b/www/assets/res/css/base.css index 06fcb4b..4449c40 100644 --- a/www/assets/res/css/base.css +++ b/www/assets/res/css/base.css @@ -39,7 +39,7 @@ table { border-collapse: collapse; &, :is(td,th) { - padding: 0.4em; + padding: 0.2em 0.4em; border: 1px solid var(--table-border-color); } } diff --git a/www/assets/res/css/todos.css b/www/assets/res/css/todos.css index 7802812..f9aa23b 100644 --- a/www/assets/res/css/todos.css +++ b/www/assets/res/css/todos.css @@ -1,24 +1,17 @@ -.todo { - h3::before { - font-family: monospace; +h3.todo { + &::before { + font-size: small; } - &.working h3::before { - content: "* "; + &.working::before { + content: "(working) "; } - &.done h3::before { - content: "✓ "; + &.done::before { + content: "(done) "; } - &.give-up { - &, a:link, a:visited { - color: grey; - } - - h3:before { - content: "orz ✖ "; - } + &.give-up::before { + content: "(give up) "; } } - |