summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-09-23 06:07:26 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-09-23 06:07:26 +0200
commit48f4d85f18795619035ad00f14f9e1c743275801 (patch)
tree65f5fd35c252969797ade3de08350b74aa8b5ea6
parentbcc068ece02bee43561db9bf0a32adce2ca7553d (diff)
Don’t have visited links be purple
-rw-r--r--src/style.css6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/style.css b/src/style.css
index 15cfb5a..62e3db5 100644
--- a/src/style.css
+++ b/src/style.css
@@ -12,6 +12,10 @@
--bg: white;
--faint: rgba(0, 0, 0, 0.75);
}
+
+ a, a:visited {
+ color: blue;
+ }
}
@media (prefers-color-scheme: dark) {
@@ -21,7 +25,7 @@
--faint: rgba(255, 255, 255, 0.75);
}
- a {
+ a, a:visited {
color: #AAF;
}
}