aboutsummaryrefslogtreecommitdiff
path: root/www/assets/res
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
commitb2d2e2870660ae64358e7effcad1bb7e0c5dc998 (patch)
tree8e3eb0fb6c56cb81522701b8256777a098298212 /www/assets/res
parenta985d6bb3ee26db6444702c3c0c8bff53ba46824 (diff)
downloadcrupest-b2d2e2870660ae64358e7effcad1bb7e0c5dc998.tar.gz
crupest-b2d2e2870660ae64358e7effcad1bb7e0c5dc998.tar.bz2
crupest-b2d2e2870660ae64358e7effcad1bb7e0c5dc998.zip
feat(www): update.
Diffstat (limited to 'www/assets/res')
-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 ✖ ";
+ }
+ }
+}
+