43 lines
790 B
SCSS
43 lines
790 B
SCSS
@import "vendor/vendor";
|
|
@import "layout/layout";
|
|
@import "utils/utils";
|
|
|
|
@font-face {
|
|
font-family: "Mau";
|
|
src: local('Mau'), url(../assets/fonts/OrientalCatsLight.otf) format('opentype');
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
position: relative;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
height: 100dvh;
|
|
width: 100dvw;
|
|
background-color: #131313;
|
|
color: #ffffff;
|
|
}
|
|
|
|
#root, .app {
|
|
position: absolute;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.app {
|
|
padding: 1rem;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
margin: 0;
|
|
}
|
|
|
|
.mau {
|
|
font-family: "Mau", serif;
|
|
} |