static/style.css: minor styling of anchor hovers, selection background

This commit is contained in:
revsuine 2024-11-25 15:44:01 +00:00
parent d5bccdc3c1
commit a4842f5f2f
Signed by: revsuine
GPG key ID: 3F257B68F5BC9339

View file

@ -6,6 +6,11 @@
--accent: var(--green);
--faint_foreground: var(--grey0);
--code_background: var(--bg_dim);
--highlight_background: var(--bg3);
}
::selection, ::-moz-selection {
background: var(--highlight_background);
}
a {
@ -17,6 +22,7 @@ a {
a:hover {
color: var(--background) !important;
background-color: var(--accent) !important;
text-decoration-line: none;
}
.code-toolbar {
@ -27,6 +33,10 @@ code {
background: var(--code_background);
}
.post-meta {
color: var(--faint_foreground);
}
.footnotes {
color: var(--faint_foreground);
}