aboutsummaryrefslogtreecommitdiff
path: root/build-aux/workflow/workflow.css
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2021-01-10 10:35:24 -0300
committerEuAndreh <eu@euandre.org>2021-01-10 10:42:02 -0300
commitfe4cc7d90f77503dc9c3675d4c27c2de6d6ffdc6 (patch)
tree2402a9836a00e306b7bd14710357ac939afd6d81 /build-aux/workflow/workflow.css
parentMove scripts/ to build-aux/ (diff)
downloadtoph-fe4cc7d90f77503dc9c3675d4c27c2de6d6ffdc6.tar.gz
toph-fe4cc7d90f77503dc9c3675d4c27c2de6d6ffdc6.tar.xz
Move workflow/ to build-aux/workflow/
Diffstat (limited to 'build-aux/workflow/workflow.css')
-rw-r--r--build-aux/workflow/workflow.css49
1 files changed, 49 insertions, 0 deletions
diff --git a/build-aux/workflow/workflow.css b/build-aux/workflow/workflow.css
new file mode 100644
index 0000000..0e4f851
--- /dev/null
+++ b/build-aux/workflow/workflow.css
@@ -0,0 +1,49 @@
+/* EuAndreh's additions */
+
+#tasks, #bugs {
+ border-bottom: 5px;
+}
+
+a.header-anchor {
+ font-size: 0.5em;
+ opacity: 0.5;
+}
+
+.NEXT, .WAITING, .MEETING, .INACTIVE, .DOING, .CANCELLED, .DONE, .TODO {
+ color: #fff;
+ padding: .1em .3em;
+ border-radius: 3px;
+ background-clip: padding-box;
+ font-size: 80%;
+ font-family: Lucida Console,monospace;
+ line-height: 1
+}
+
+/*
+ Replicate colors from:
+ https://git.euandreh.xyz/dotfiles/tree/spacemacs.el?id=fcd9f9c4ef399d45d54927382dc1cdde251ebb0a#n866
+*/
+
+.TODO {
+ background-color: brown;
+}
+
+.DOING {
+ background-color: yellowgreen;
+}
+
+.WAITING, .MEETING {
+ background-color: gray;
+}
+
+.INACTIVE {
+ background-color: orange;
+}
+
+.NEXT {
+ background-color: red;
+}
+
+.CANCELLED, .DONE {
+ background-color: green;
+}