Add auto dark mode loader screen

This commit is contained in:
Reckless_Satoshi 2022-09-20 07:21:19 -07:00
parent 3a07028c9e
commit e4ddeea39d
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
2 changed files with 312 additions and 294 deletions

View File

@ -6,6 +6,24 @@ body {
font-family: 'Roboto';
}
@media (prefers-color-scheme: dark) {
body {
background: rgb(0, 0, 0);
}
.loaderSpinner {
color: #90caf9;
}
.loaderSpinner:before{
background: rgb(0, 0, 0);
}
.loaderSpinner:after{
background: rgb(0, 0, 0);
}
.slider{
color: #fff;
}
}
#main {
position: fixed;
width: 100%;