hugo-theme-termlite/assets/css/010_anchors.css
2024-07-23 09:00:11 -07:00

37 lines
479 B
CSS

{{/*
010_anchors.css
Eryn Wells <eryn@erynwells.me>
*/}}
/**********
# ANCHORS
**********/
:root {
--text-color-link: var(--blue);
}
a {
color: var(--text-color-link);
text-decoration: none;
&:hover {
color: var(--text-color-link);
text-decoration: underline;
}
&:visited {
color: var(--text-color-link);
text-decoration: underline dashed;
}
}
@media (prefers-reduce-motion: reduce) {
a {
text-decoration: underline;
}
}