Restructuring of previous project files

This commit is contained in:
shockrah
2020-12-06 14:29:56 -08:00
parent fe96a748ba
commit cc1e3e6bc3
8 changed files with 24 additions and 55 deletions

View File

@@ -0,0 +1,13 @@
/* Overrides for the welcome page background stuff */
/* For now we'll just worry about dark mode
Light mode gets fucked here lmao
*/
$top-grey: #424242;
$back-grey: #303030;
$bar-grey: #212121;
body {
background: $back-grey;
}

View File

@@ -0,0 +1,24 @@
@import 'general';
$text-color: white;
label {
color: $text-color;
}
h1 {
color: $text-color;
display: block;
}
.center {
margin: 0 auto;
text-align: center;
}
::placeholder {
color: $back-grey;
}
input {
margin-top: 0.5em;
margin-bottom: 0.5em;
}

View File

@@ -0,0 +1,28 @@
@import 'general';
$text-color: whitesmoke;
body {
color: $text-color;
}
label {
color: $text-color;
}
h1 {
color: $text-color;
display: block;
}
.center {
margin: 0 auto;
text-align: center;
}
::placeholder {
color: $back-grey;
}
input {
margin-top: 0.5em;
margin-bottom: 0.5em;
}