Dark theme fixes

Fixes a few issues regarding login pages and older browsers.
This commit is contained in:
tersiswilvin 2022-08-29 00:17:37 -07:00
parent 68c3ee6190
commit 3f24d06d2f
1 changed files with 6 additions and 3 deletions

View File

@ -52,18 +52,22 @@ body {
color: white; color: white;
} }
.loggedout body {
background-color: transparent;
}
.loggedout { .loggedout {
background-image: url('../img/animateddark.png'); background-image: url('../img/animateddark.png');
background-color: rgb(1, 17, 48); background-color: rgb(1, 17, 48);
} }
.content { .content {
color: rgb(167 167 167); color: rgb(167, 167, 167);
background: rgb(25, 25, 25); background: rgb(25, 25, 25);
} }
.content_signup { .content_signup {
color: rgb(167 167 167); color: rgb(167, 167, 167);
background: rgb(25, 25, 25); background: rgb(25, 25, 25);
} }
@ -122,7 +126,6 @@ input {
color: rgb(200,200,200); color: rgb(200,200,200);
} }
.tab_selected { .tab_selected {
background: linear-gradient(180deg, #00a2ff 0%, #01639c 100%) background: linear-gradient(180deg, #00a2ff 0%, #01639c 100%)
} }