diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-04-01 23:44:50 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-04-02 19:00:58 +0800 |
commit | de47582066d9268a39cb36f27fece561f7d62627 (patch) | |
tree | c7e5704beadaae808c501d5f5e270d94329c5563 /www/assets/res/css | |
parent | b487b3815fb92812507261acc5436f8923ff97e9 (diff) | |
download | crupest-de47582066d9268a39cb36f27fece561f7d62627.tar.gz crupest-de47582066d9268a39cb36f27fece561f7d62627.tar.bz2 crupest-de47582066d9268a39cb36f27fece561f7d62627.zip |
feat(www): update.
Diffstat (limited to 'www/assets/res/css')
-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 ✖ "; + } + } +} + |