main page overhaul

This commit is contained in:
2023-03-22 15:29:20 +01:00
parent 876333edd5
commit fd379ec491
9 changed files with 95 additions and 23 deletions

View File

@@ -1,2 +1,12 @@
@import "vendor/vendor";
@import "layout/layout";
@import "layout/layout";
@import "utils/utils";
@font-face {
font-family: "Mau";
src: local('Mau'), url(../assets/fonts/OrientalCatsLight.otf) format('opentype');
}
h1, h2, h3, h4, h5 {
font-family: "Mau", serif;
}

View File

@@ -0,0 +1 @@
@import "mainlobby";

View File

@@ -0,0 +1,15 @@
.main-lobby {
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
&__button {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
}

View File

@@ -0,0 +1 @@
@import "pointer";

View File

@@ -0,0 +1,4 @@
.clickable {
cursor: pointer;
user-select: none;
}