links: invert to black on hover

This commit is contained in:
2026-06-29 09:59:48 +02:00
parent e28774fcca
commit 76514c20d4
+8
View File
@@ -296,6 +296,14 @@ body {
user-select: text; user-select: text;
} }
/* dotted content + footer links: unchanged at rest, invert to black on hover */
main a:hover,
footer a:hover {
background: var(--color-text-primary);
color: var(--color-bg-primary);
border-bottom-color: transparent;
}
/* all images always in colour (selection drives what's shown, not hover) */ /* all images always in colour (selection drives what's shown, not hover) */
img { filter: none; } img { filter: none; }