aboutsummaryrefslogtreecommitdiff
path: root/build-aux/workflow/style.css
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-01-16 14:11:36 -0300
committerEuAndreh <eu@euandre.org>2021-01-16 14:13:55 -0300
commit7f1b1a193bfef0936cfb3f0aee368f0cf21f078f (patch)
tree8d476ef3af0ceb87d64dc857cf190b5779c56df9 /build-aux/workflow/style.css
parentUpdate tfstate file (diff)
downloadserver-7f1b1a193bfef0936cfb3f0aee368f0cf21f078f.tar.gz
server-7f1b1a193bfef0936cfb3f0aee368f0cf21f078f.tar.xz
Move from TODOs.rst to TODOs.md
Diffstat (limited to 'build-aux/workflow/style.css')
-rw-r--r--build-aux/workflow/style.css50
1 files changed, 50 insertions, 0 deletions
diff --git a/build-aux/workflow/style.css b/build-aux/workflow/style.css
new file mode 100644
index 0000000..b68ff70
--- /dev/null
+++ b/build-aux/workflow/style.css
@@ -0,0 +1,50 @@
+<style>
+ hr {
+ background-color: #ccc;
+ }
+
+ /*
+ Replicate colors from:
+ https://git.euandreh.xyz/dotfiles/tree/spacemacs.el?id=fcd9f9c4ef399d45d54927382dc1cdde251ebb0a#n866
+ */
+
+ .TODO::after {
+ content: "TODO";
+ color: brown;
+ }
+
+ .DOING::after {
+ content: "DOING";
+ color: yellowgreen;
+ }
+
+ .WAITING::after {
+ content: "WAITING";
+ color: gray;
+ }
+
+ .MEETING::after {
+ content: "MEETING";
+ color: gray;
+ }
+
+ .INACTIVE::after {
+ content: "INACTIVE";
+ color: orange;
+ }
+
+ .NEXT::after {
+ content: "NEXT";
+ color: red;
+ }
+
+ .CANCELLED::after {
+ content: "CANCELLED";
+ color: green;
+ }
+
+ .DONE::after {
+ content: "DONE";
+ color: green;
+ }
+</style>