first commit

This commit is contained in:
Hendrik Hogertz
2022-01-15 00:56:38 +01:00
commit 63ba272b75
182 changed files with 19069 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
@mixin float_dark {
.float-container {
a {
color: $alt-fg-color-dark;
background-color: $alt-bg-color-dark;
&:hover,
&:focus {
color: $link-color-dark;
@media only screen and (max-width: 768px) {
color: $alt-fg-color-dark;
}
}
}
}
}
body.colorscheme-dark {
@include float_dark();
}
body.colorscheme-auto {
@media (prefers-color-scheme: dark) {
@include float_dark();
}
}