aboutsummaryrefslogtreecommitdiff
path: root/aux/workflow/style.css
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-03-13 14:25:15 -0300
committerEuAndreh <eu@euandre.org>2023-03-13 14:25:15 -0300
commit862271d704f1d096a26e0b3ff147b70ae94a64e3 (patch)
treecef7a195e779602beb9e951e6b7dbfabc69d5321 /aux/workflow/style.css
parentgit mv src/xyz/euandreh/* src/org/euandre/ (diff)
downloadpackage-repository-862271d704f1d096a26e0b3ff147b70ae94a64e3.tar.gz
package-repository-862271d704f1d096a26e0b3ff147b70ae94a64e3.tar.xz
rm -rf aux/ po/
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>