diff options
author | EuAndreh <eu@euandre.org> | 2020-12-02 15:41:18 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-12-02 15:41:54 -0300 |
commit | b3ee98bbb77d4e6d8ac3f0e0507cdb443b11271b (patch) | |
tree | 761c391c615be51364bf8be2592a3e7ddf10afc2 /workflow/workflow.css | |
parent | with-container.sh: Call $@ with sh -c (diff) | |
download | server-b3ee98bbb77d4e6d8ac3f0e0507cdb443b11271b.tar.gz server-b3ee98bbb77d4e6d8ac3f0e0507cdb443b11271b.tar.xz |
Build and publish TODOs.org file
Diffstat (limited to 'workflow/workflow.css')
-rw-r--r-- | workflow/workflow.css | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/workflow/workflow.css b/workflow/workflow.css new file mode 100644 index 0000000..0e4f851 --- /dev/null +++ b/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; +} |