website/css/links.css

21 lines
253 B
CSS

a {
transition: color 300ms;
text-decoration: none;
/* LVHA-order */
&:link {
color: var(--blue);
}
&:visited {
color: var(--blue);
}
&:hover {
color: var(--blue);
}
&:active {
}
}