diff options
Diffstat (limited to 'www/assets')
-rw-r--r-- | www/assets/res/css/todos.css | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/www/assets/res/css/todos.css b/www/assets/res/css/todos.css index e9a595d..7802812 100644 --- a/www/assets/res/css/todos.css +++ b/www/assets/res/css/todos.css @@ -1,14 +1,24 @@ .todo { - - &::before { + h3::before { font-family: monospace; } - &.working::before { + &.working h3::before { content: "* "; } - &.done::before { + &.done h3::before { content: "✓ "; } -}
\ No newline at end of file + + &.give-up { + &, a:link, a:visited { + color: grey; + } + + h3:before { + content: "orz ✖ "; + } + } +} + |