aboutsummaryrefslogtreecommitdiff
path: root/www/assets/res/css
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-04-01 23:44:50 +0800
committerYuqian Yang <crupest@crupest.life>2025-04-02 19:00:58 +0800
commit4182874b764ea3d6ec6224e1b4d0f1b38ff78c05 (patch)
tree089b061146913b7b8afa36c56cc5c64cb1124cc7 /www/assets/res/css
parent6e266e43ddbd99cadc814190c54eb77890f42479 (diff)
downloadcrupest-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.css20
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 ✖ ";
+ }
+ }
+}
+