2021-12-28 14:52:13 +00:00
|
|
|
a {
|
|
|
|
transition: all 0.1s ease-out;
|
|
|
|
@media (prefers-reduced-motion) {
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
&:link {
|
|
|
|
color: var(--link-color);
|
|
|
|
text-decoration-thickness: .125rem;
|
2020-10-25 05:15:18 +00:00
|
|
|
text-underline-offset: 0.125em;
|
|
|
|
text-decoration-skip-ink: none;
|
|
|
|
}
|
2021-12-28 14:52:13 +00:00
|
|
|
&:visited {
|
|
|
|
color: var(--link-visited);
|
|
|
|
}
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
background: var(--primary-accent);
|
|
|
|
color: var(--primary-accent-text);
|
|
|
|
padding: 4px;
|
|
|
|
border-radius: 2px;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
text-decoration-thickness: 0.25em;
|
|
|
|
text-underline-offset: 0.25em;
|
|
|
|
}
|
|
|
|
&:active {
|
2020-10-25 05:15:18 +00:00
|
|
|
|
|
|
|
}
|
2021-12-28 14:52:13 +00:00
|
|
|
}
|