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 {
|
2024-02-26 11:41:39 +00:00
|
|
|
outline-offset: 0.5rem;
|
|
|
|
outline-width: 0.25rem;
|
|
|
|
border-radius: 0.125rem;
|
2021-12-28 14:52:13 +00:00
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
text-decoration-thickness: 0.25em;
|
|
|
|
text-underline-offset: 0.25em;
|
|
|
|
}
|
|
|
|
&:active {
|
2020-10-25 05:15:18 +00:00
|
|
|
|
|
|
|
}
|
2024-02-26 11:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*[title] {
|
|
|
|
text-decoration: underline;
|
|
|
|
text-decoration-style: dotted;
|
|
|
|
}
|