Add style for darkmode toggle button

master
Splash 4 years ago committed by GitHub
parent c4b4ddae6a
commit b72cedc543
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -519,6 +519,23 @@ input[type=number] {
z-index: 1;
}
.darkmode-toggle {
opacity: 0.7;
transition: opacity 0.15;
}
.darkmode-toggle:hover {
opacity: 0.9;
}
.darkmode-toggle:active {
transition: opacity 0;
opacity: 1;
}
.darkmode-toggle:focus {
outline: none;
}
div.darkmode-background{
background: #fef0e3;
background-image:

Loading…
Cancel
Save