Set some anchor color and text decoration

Remove the animation
This commit is contained in:
Eryn Wells 2024-07-23 09:00:11 -07:00
parent c6213619b0
commit 2ea86253a3

View file

@ -8,24 +8,25 @@
/********** /**********
# ANCHORS # ANCHORS
**********/ **********/
a { :root {
--hover-animating-timing: 0.1s; --text-color-link: var(--blue);
}
color: var(--blue); a {
color: var(--text-color-link);
text-decoration: none; text-decoration: none;
transition: color var(--hover-animating-timing);
&:hover { &:hover {
color: var(--blue); color: var(--text-color-link);
text-decoration: underline; text-decoration: underline;
transition: color var(--hover-animating-timing);
} }
&:visited { &:visited {
color: var(--blue); color: var(--text-color-link);
text-decoration: underline dashed;
} }
} }
@ -34,4 +35,3 @@ a {
text-decoration: underline; text-decoration: underline;
} }
} }