aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-01-22 17:55:52 -0300
committerEuAndreh <eu@euandre.org>2022-01-22 17:55:52 -0300
commitb6a94c8421dd0eeb93836c0b222f6015a2a774fc (patch)
tree726e9aca2934983887ab6effabd862734216a44c
parentaux/{workflow/repocheck,ci/ci-build}.sh: Stop redundantly building "public" t... (diff)
downloadgit-permalink-b6a94c8421dd0eeb93836c0b222f6015a2a774fc.tar.gz
git-permalink-b6a94c8421dd0eeb93836c0b222f6015a2a774fc.tar.xz
aux/workflow/style.css: Add background color for <pre> tags
-rw-r--r--aux/workflow/style.css13
1 files changed, 10 insertions, 3 deletions
diff --git a/aux/workflow/style.css b/aux/workflow/style.css
index c3496b5..c212ddb 100644
--- a/aux/workflow/style.css
+++ b/aux/workflow/style.css
@@ -12,6 +12,10 @@
a:visited {
color: hsl(242, 100%, 80%);
}
+
+ pre {
+ background-color: #333;
+ }
}
body {
@@ -25,6 +29,7 @@
.header-anchor {
opacity: 0.5;
+ display: inline-block;
}
.tag {
@@ -60,11 +65,13 @@
color: green;
}
- pre > code {
- display: block;
- border: 1px solid #ccc;
+ pre {
+ background-color: #ccc;
border-radius: 10px;
padding: 10px;
+ }
+
+ pre > code {
overflow: auto;
white-space: pre;
}