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 | 4182874b764ea3d6ec6224e1b4d0f1b38ff78c05 (patch) | |
| tree | 089b061146913b7b8afa36c56cc5c64cb1124cc7 /www/assets/res/css | |
| parent | 6e266e43ddbd99cadc814190c54eb77890f42479 (diff) | |
| download | crupest-4182874b764ea3d6ec6224e1b4d0f1b38ff78c05.tar.gz crupest-4182874b764ea3d6ec6224e1b4d0f1b38ff78c05.tar.bz2 crupest-4182874b764ea3d6ec6224e1b4d0f1b38ff78c05.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 ✖ "; +    } +  } +} +  | 
