summaryrefslogtreecommitdiff
path: root/static/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css8
1 files changed, 6 insertions, 2 deletions
diff --git a/static/style.css b/static/style.css
index 1e9d803..355ca71 100644
--- a/static/style.css
+++ b/static/style.css
@@ -7,6 +7,7 @@
--border1: #ccc;
--code-bg: #e8e8e8;
--border2: #999;
+ --a-fg: #B34A00;
}
@media (prefers-color-scheme: dark) {
@@ -19,6 +20,7 @@
--border1: #444;
--code-bg: #222;
--border2: #555;
+ --a-fg: #FF9447;
}
}
@@ -26,7 +28,7 @@ body {
margin: auto;
max-width: 820px;
line-height: 1.6;
- font-family: Serif;
+ font-family: "Trebutchet MS", Sans-Serif;
padding: 0 10px;
font-size: 18px;
color: var(--fg);
@@ -45,6 +47,7 @@ nav.navbar > a {
padding: 1px 20px;
background: var(--pre-bg);
border: 1px solid var(--border1);
+ border-radius: 6px;
}
h1.title {
@@ -72,6 +75,7 @@ pre {
border-radius: 3px;
border: 1px solid var(--border1);
font-size: 14px;
+ font-family: Courier, Monospace;
overflow-x: auto;
background: var(--pre-bg);
color: var(--pre-fg);
@@ -93,7 +97,7 @@ code {
}
a {
- color: #cc833b;/*#e77850;*/
+ color: var(--a-fg);
text-decoration: none;
}