Fixed Cookie Auto-Nightmode and changed copyright

This commit is contained in:
2020-12-27 23:16:01 +01:00
parent 8e131d3ee4
commit 1b7a502cd4
2 changed files with 19 additions and 2 deletions

View File

@ -7,6 +7,7 @@
width: 100vw;
height: min-content;
color: black;
background-color: white;
border-top: 1px solid black;
@ -20,6 +21,9 @@
padding: .5rem 1rem;
margin: 0;
line-height: 1em;
color: black;
border-color: black;
}
.cookie-banner * {
@ -33,4 +37,17 @@
.cookie-banner > :last-child {
margin-right: 0 !important;
}
@media (prefers-color-scheme: dark){
.cookie-banner {
background-color: black;
border-color: white;
color: white;
}
.cookie-banner button{
color: white;
border-color: white;
}
}