aboutsummaryrefslogtreecommitdiff
path: root/aux/workflow/style.css
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-05-30 14:35:57 -0300
committerEuAndreh <eu@euandre.org>2022-05-30 14:35:57 -0300
commitb3597c5e850a02e724f287b04a3701fe13d46fdc (patch)
tree0fc6bad03680409b1cf56919ff1f5dd988339521 /aux/workflow/style.css
parentRevert "src/xyz/euandreh/pending.scm: Ad quodlibet" (diff)
downloadpackage-repository-b3597c5e850a02e724f287b04a3701fe13d46fdc.tar.gz
package-repository-b3597c5e850a02e724f287b04a3701fe13d46fdc.tar.xz
aux/: Update
Diffstat (limited to 'aux/workflow/style.css')
-rw-r--r--aux/workflow/style.css45
1 files changed, 26 insertions, 19 deletions
diff --git a/aux/workflow/style.css b/aux/workflow/style.css
index c3496b5..99980aa 100644
--- a/aux/workflow/style.css
+++ b/aux/workflow/style.css
@@ -1,19 +1,4 @@
<style>
- @media(prefers-color-scheme: dark) {
- :root {
- color: white;
- background-color: black;
- }
-
- a {
- color: hsl(211, 100%, 60%);
- }
-
- a:visited {
- color: hsl(242, 100%, 80%);
- }
- }
-
body {
max-width: 800px;
margin: 0 auto 0 auto;
@@ -25,6 +10,7 @@
.header-anchor {
opacity: 0.5;
+ display: inline-block;
}
.tag {
@@ -60,12 +46,33 @@
color: green;
}
+ pre, code {
+ background-color: #ddd;
+ border-radius: 5px;
+ padding: 5px;
+ }
+
pre > code {
- display: block;
- border: 1px solid #ccc;
- border-radius: 10px;
- padding: 10px;
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>