Formatting and selection colors

This commit is contained in:
Nox Sluijtman 2024-01-04 12:42:45 +01:00
parent 88e06e6580
commit 0dfbe14502

View file

@ -1,7 +1,9 @@
@import "custom.css";
:root{
--fg:#E60073;
}
::selection{
color: black;
background-color: var(--fg);
@ -82,6 +84,8 @@ h1:hover>a,h2:hover>a,h3:hover>a,h4:hover>a,h5:hover>a,h6:hover>a{visibility:vis
h1:target>a,h2:target>a,h3:target>a,h4:target>a,h5:target>a,h6:target>a{color: black; visibility: visible;}
:target{color: black; background-color: var(--fg);}
:target::selection{color: var(--fg); background-color: black;}
footer{
text-align: center;
border-top: 1pt solid;