diff options
Diffstat (limited to 'build-aux/workflow/style.css')
-rw-r--r-- | build-aux/workflow/style.css | 32 |
1 files changed, 10 insertions, 22 deletions
diff --git a/build-aux/workflow/style.css b/build-aux/workflow/style.css index b68ff70..a4ac27a 100644 --- a/build-aux/workflow/style.css +++ b/build-aux/workflow/style.css @@ -3,48 +3,36 @@ background-color: #ccc; } + a.header-anchor { + opacity: 0.5; + } + /* Replicate colors from: https://git.euandreh.xyz/dotfiles/tree/spacemacs.el?id=fcd9f9c4ef399d45d54927382dc1cdde251ebb0a#n866 */ - .TODO::after { - content: "TODO"; + .TODO { color: brown; } - .DOING::after { - content: "DOING"; + .DOING { color: yellowgreen; } - .WAITING::after { - content: "WAITING"; - color: gray; - } - - .MEETING::after { - content: "MEETING"; + .WAITING, .MEETING { color: gray; } - .INACTIVE::after { - content: "INACTIVE"; + .INACTIVE { color: orange; } - .NEXT::after { - content: "NEXT"; + .NEXT { color: red; } - .CANCELLED::after { - content: "CANCELLED"; - color: green; - } - - .DONE::after { - content: "DONE"; + .CANCELLED, .DONE { color: green; } </style> |