37 lines
408 B
SCSS
37 lines
408 B
SCSS
@import 'general';
|
|
|
|
$text-color: white;
|
|
|
|
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;
|
|
}
|
|
|
|
// Menu bar stuff
|
|
|
|
.btn-nav-settings {
|
|
color: whitesmoke;
|
|
border-color: whitesmoke;
|
|
}
|