Set some anchor color and text decoration
Remove the animation
This commit is contained in:
parent
c6213619b0
commit
2ea86253a3
1 changed files with 9 additions and 9 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue