2022-10-13 10:49:41 +00:00
|
|
|
a:link {
|
|
|
|
transition: all 0.1s ease-out;
|
|
|
|
color: var(--link-color);
|
|
|
|
text-decoration-thickness: .0625rem;
|
|
|
|
text-underline-offset: 0.125em;
|
|
|
|
text-decoration-skip-ink: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: var(--link-visited);
|
|
|
|
}
|
|
|
|
|
|
|
|
a:focus {
|
|
|
|
outline: none;
|
|
|
|
background: var(--primary-accent);
|
|
|
|
color: var(--primary-accent-text);
|
|
|
|
border-radius: 2px;
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
text-decoration-thickness: 0.125em;
|
|
|
|
text-underline-offset: 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-reduced-motion) {
|
|
|
|
a:link {transition: none}
|
2022-10-16 22:15:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* mark external links */
|
|
|
|
|
|
|
|
a[href^="http"]:after {
|
|
|
|
content: "🡕";
|
|
|
|
}
|
|
|
|
|
|
|
|
a[href^="{{.Site.BaseURL}}"]:after
|
|
|
|
{
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
a[href^="http://localhost"]:after
|
|
|
|
{
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|