diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-09-23 06:07:26 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-09-23 06:07:26 +0200 |
commit | 48f4d85f18795619035ad00f14f9e1c743275801 (patch) | |
tree | 65f5fd35c252969797ade3de08350b74aa8b5ea6 /src | |
parent | bcc068ece02bee43561db9bf0a32adce2ca7553d (diff) |
Don’t have visited links be purple
Diffstat (limited to 'src')
-rw-r--r-- | src/style.css | 6 |
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; } } |