37 lines
672 B
SCSS
37 lines
672 B
SCSS
@forward "./font.scss";
|
|
|
|
@use "./variables.scss";
|
|
@use "./elements/header.scss";
|
|
@use "./elements/main.scss";
|
|
@use "./elements/footer.scss";
|
|
|
|
:root {
|
|
@include variables.css-global;
|
|
color-scheme: dark;
|
|
}
|
|
::selection {
|
|
background-color: rgb(255,255,255);
|
|
color: rgb(0,0,0);
|
|
}
|
|
::spelling-error { text-decoration: none; }
|
|
|
|
body {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
background-color: rgb(0,0,0);
|
|
}
|
|
button {
|
|
background-color: transparent;
|
|
border: 0;
|
|
}
|
|
a {
|
|
color: white;
|
|
cursor: unset;
|
|
|
|
&:hover, &:active, &:link { text-decoration: none; }
|
|
}
|
|
|
|
header { @include header.styling; }
|
|
main { @include main.styling; }
|
|
footer { @include footer.styling; } |