hugo-coder-fork/assets/scss/_footer_dark.scss

27 lines
374 B
SCSS
Raw Normal View History

@mixin footer_dark {
.footer {
a {
color: $link-color-dark;
}
}
2020-02-02 19:52:12 +00:00
.cs-mode-button {
color: $fg-color-dark;
&:hover {
color: $link-color-dark;
text-decoration: underline;
}
}
}
body.colorscheme-dark {
2020-02-02 19:52:12 +00:00
@include footer_dark();
}
body.colorscheme-auto {
@media (prefers-color-scheme: dark) {
2020-02-02 19:52:12 +00:00
@include footer_dark();
}
}