diff options
author | EuAndreh <eu@euandre.org> | 2021-03-05 18:15:15 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-06 01:27:00 -0300 |
commit | 65cf8196ea66e207c8c6f5015192eb0b34463457 (patch) | |
tree | 70789808399aa65770188043835235759d0d7217 /aux/workflow/style.css | |
parent | Empty initial commit (diff) | |
download | gistatic-65cf8196ea66e207c8c6f5015192eb0b34463457.tar.gz gistatic-65cf8196ea66e207c8c6f5015192eb0b34463457.tar.xz |
Add base project skeleton files
Diffstat (limited to 'aux/workflow/style.css')
-rw-r--r-- | aux/workflow/style.css | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/aux/workflow/style.css b/aux/workflow/style.css new file mode 100644 index 0000000..d7935d0 --- /dev/null +++ b/aux/workflow/style.css @@ -0,0 +1,46 @@ +<style> + hr { + background-color: #ccc; + } + + div.header-anchor { + opacity: 0.5; + } + + span.tag { + font-family: monospace; + font-size: 70%; + background-color: lightgray; + padding: 3px; + border-radius: 5px; + } + + /* + Replicate colors from: + https://git.euandreh.xyz/dotfiles/tree/spacemacs.el?id=fcd9f9c4ef399d45d54927382dc1cdde251ebb0a#n866 + */ + + .TODO { + color: brown; + } + + .DOING { + color: yellowgreen; + } + + .WAITING, .MEETING { + color: gray; + } + + .INACTIVE { + color: orange; + } + + .NEXT { + color: red; + } + + .CANCELLED, .DONE { + color: green; + } +</style> |