Restructuring of previous project files
This commit is contained in:
13
freechat-client/sass/general.scss
Normal file
13
freechat-client/sass/general.scss
Normal 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;
|
||||
}
|
||||
24
freechat-client/sass/settings.scss
Normal file
24
freechat-client/sass/settings.scss
Normal 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;
|
||||
}
|
||||
28
freechat-client/sass/style.scss
Normal file
28
freechat-client/sass/style.scss
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user