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
|
@ -11,21 +11,22 @@
|
|||
# ANCHORS
|
||||
**********/
|
||||
|
||||
a {
|
||||
--hover-animating-timing: 0.1s;
|
||||
:root {
|
||||
--text-color-link: var(--blue);
|
||||
}
|
||||
|
||||
color: var(--blue);
|
||||
a {
|
||||
color: var(--text-color-link);
|
||||
text-decoration: none;
|
||||
transition: color var(--hover-animating-timing);
|
||||
|
||||
&:hover {
|
||||
color: var(--blue);
|
||||
color: var(--text-color-link);
|
||||
text-decoration: underline;
|
||||
transition: color var(--hover-animating-timing);
|
||||
}
|
||||
|
||||
&:visited {
|
||||
color: var(--blue);
|
||||
color: var(--text-color-link);
|
||||
text-decoration: underline dashed;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -34,4 +35,3 @@ a {
|
|||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue