aboutsummaryrefslogtreecommitdiff
path: root/www/assets/res/css/todos.css
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-06-14 22:49:26 +0800
committerYuqian Yang <crupest@crupest.life>2025-06-14 22:49:26 +0800
commit02b1a87d8fac3a4881968a67274fb825987bc7a0 (patch)
tree085af399922d4c1be7fd35540fcfd7a72fa4b622 /www/assets/res/css/todos.css
parent448852a474126c42d6d078d0bb82258b7ecc0750 (diff)
downloadcrupest-02b1a87d8fac3a4881968a67274fb825987bc7a0.tar.gz
crupest-02b1a87d8fac3a4881968a67274fb825987bc7a0.tar.bz2
crupest-02b1a87d8fac3a4881968a67274fb825987bc7a0.zip
www: move layout files for new version of hugo and fix nested shortcodes.
Diffstat (limited to 'www/assets/res/css/todos.css')
-rw-r--r--www/assets/res/css/todos.css25
1 files changed, 9 insertions, 16 deletions
diff --git a/www/assets/res/css/todos.css b/www/assets/res/css/todos.css
index 7802812..f9aa23b 100644
--- a/www/assets/res/css/todos.css
+++ b/www/assets/res/css/todos.css
@@ -1,24 +1,17 @@
-.todo {
- h3::before {
- font-family: monospace;
+h3.todo {
+ &::before {
+ font-size: small;
}
- &.working h3::before {
- content: "* ";
+ &.working::before {
+ content: "(working) ";
}
- &.done h3::before {
- content: "✓ ";
+ &.done::before {
+ content: "(done) ";
}
- &.give-up {
- &, a:link, a:visited {
- color: grey;
- }
-
- h3:before {
- content: "orz ✖ ";
- }
+ &.give-up::before {
+ content: "(give up) ";
}
}
-