aboutsummaryrefslogtreecommitdiff
path: root/aux/workflow/style.css
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-11-17 19:58:51 -0300
committerEuAndreh <eu@euandre.org>2024-11-17 19:58:51 -0300
commitff8f00b960f00f1db0bd7dc04de6c69cabc65f88 (patch)
treedd272ed8905fb70eb39300427936ee103726a0f5 /aux/workflow/style.css
parentrm src/bin/pb (diff)
downloadeuandre.org-ff8f00b960f00f1db0bd7dc04de6c69cabc65f88.tar.gz
euandre.org-ff8f00b960f00f1db0bd7dc04de6c69cabc65f88.tar.xz
rm -rf aux/
Diffstat (limited to '')
-rw-r--r--aux/workflow/style.css78
1 files changed, 0 insertions, 78 deletions
diff --git a/aux/workflow/style.css b/aux/workflow/style.css
deleted file mode 100644
index 99980aa..0000000
--- a/aux/workflow/style.css
+++ /dev/null
@@ -1,78 +0,0 @@
-<style>
- body {
- max-width: 800px;
- margin: 0 auto 0 auto;
- }
-
- hr {
- background-color: #ccc;
- }
-
- .header-anchor {
- opacity: 0.5;
- display: inline-block;
- }
-
- .tag {
- font-family: monospace;
- font-size: 70%;
- background-color: lightgray;
- color: black;
- padding: 3px;
- border-radius: 5px;
- }
-
- .TODO {
- color: brown;
- }
-
- .DOING {
- color: yellowgreen;
- }
-
- .WAITING, .MEETING {
- color: orange;
- }
-
- .INACTIVE {
- color: gray;
- }
-
- .NEXT {
- color: red;
- }
-
- .CANCELLED, .DONE, .WONTFIX {
- color: green;
- }
-
- pre, code {
- background-color: #ddd;
- border-radius: 5px;
- padding: 5px;
- }
-
- pre > code {
- overflow: auto;
- white-space: pre;
- }
-
- @media(prefers-color-scheme: dark) {
- :root {
- color: white;
- background-color: black;
- }
-
- a {
- color: hsl(211, 100%, 60%);
- }
-
- a:visited {
- color: hsl(242, 100%, 80%);
- }
-
- pre, code {
- background-color: #222;
- }
- }
-</style>