hugo-theme-termlite/assets/css/010_anchors.css

33 lines
414 B
CSS

/**********
# 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;
}
}