mirror of
https://github.com/mue/mue.git
synced 2026-07-07 22:23:37 +02:00
* Solved margin and colour issue of text * Addressed some small code-style tweaks that need doing as well before this can be merged
94 lines
1.8 KiB
SCSS
94 lines
1.8 KiB
SCSS
@import 'variables';
|
|
@import 'mixins';
|
|
|
|
@import 'modules/clock';
|
|
@import 'modules/greeting';
|
|
@import 'modules/quote';
|
|
@import 'modules/search';
|
|
@import 'modules/credit';
|
|
@import 'modules/navbar';
|
|
@import 'modules/modal';
|
|
@import 'modules/settings';
|
|
@import 'modules/toast';
|
|
@import 'modules/marketplace';
|
|
@import 'modules/checkbox';
|
|
@import 'modules/buttons';
|
|
@import 'modules/dropdown';
|
|
@import 'modules/welcome';
|
|
|
|
body {
|
|
background: #2f3640;
|
|
margin: 0;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
font-family: 'Lexend Deca', sans-serif;
|
|
overflow: hidden;
|
|
}
|
|
|
|
* {
|
|
font-family: 'Lexend Deca', 'Roboto' !important;
|
|
outline: none;
|
|
}
|
|
|
|
#center {
|
|
margin-left: 2vw;
|
|
margin-right: 2vw;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
font-size: calc(10px + 2vmin);
|
|
text-align: center;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin: auto;
|
|
text-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
::placeholder {
|
|
color: map-get($theme-colours, 'main');
|
|
opacity: 1;
|
|
}
|
|
|
|
#root {
|
|
min-height: 100vh;
|
|
display: grid;
|
|
color: map-get($theme-colours, 'main-text-color');
|
|
}
|
|
|
|
#backgroundImage {
|
|
height: 100vh;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-attachment: fixed;
|
|
}
|
|
|
|
.fade-in {
|
|
@include animation('fadein 2s');
|
|
}
|
|
|
|
@include keyframes(fadein) {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.backgroundEffects {
|
|
opacity: 0.7;
|
|
transition: ease 0.6s;
|
|
}
|
|
|
|
.creditlink {
|
|
text-decoration: none;
|
|
color: white;
|
|
}
|
|
|
|
::selection {
|
|
background-color: #c2c2c2;
|
|
} |