aboutsummaryrefslogtreecommitdiff
path: root/www/assets/res/css/todos.css
diff options
context:
space:
mode:
Diffstat (limited to 'www/assets/res/css/todos.css')
-rw-r--r--www/assets/res/css/todos.css15
1 files changed, 9 insertions, 6 deletions
diff --git a/www/assets/res/css/todos.css b/www/assets/res/css/todos.css
index e9a595d..f9aa23b 100644
--- a/www/assets/res/css/todos.css
+++ b/www/assets/res/css/todos.css
@@ -1,14 +1,17 @@
-.todo {
-
+h3.todo {
&::before {
- font-family: monospace;
+ font-size: small;
}
&.working::before {
- content: "* ";
+ content: "(working) ";
}
&.done::before {
- content: "✓ ";
+ content: "(done) ";
+ }
+
+ &.give-up::before {
+ content: "(give up) ";
}
-} \ No newline at end of file
+}