Change visited link color

This commit is contained in:
Devon Campbell 2022-12-06 20:57:44 -08:00
commit 1a632d2105

View file

@ -7,6 +7,7 @@
:root {
--accent: rgb(62, 249, 138);
--accent-dark: #06cb56;
--fancy-font-stack: BitBold, monospace;
}
@ -56,11 +57,13 @@ img {
height: auto;
}
a,
a:visited {
a {
text-decoration: none;
transition: 0.2s;
}
a:visited {
color: var(--accent-dark);
}
a:hover,
a:visited:hover {
text-shadow: 0 0 2px #fff, 0 0 8px var(--accent);