Initial commit

This commit is contained in:
2026-05-12 23:33:46 +02:00
commit ccf32dcece
104 changed files with 17439 additions and 0 deletions

44
scss/_layout.scss Normal file
View File

@@ -0,0 +1,44 @@
body {
display: flex;
flex-direction: column;
height: 100vh;
background-color: $light_gray;
}
main {
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
@media ($tablet) {
margin-top: 12vh;
}
}
.container {
display: flex;
align-items: center;
justify-content: start;
flex-direction: column;
position: relative;
z-index: 1;
padding: 4vh 5vw;
max-width: 1640px;
width: 100vw;
}
.full-block {
width: 100%;
background-color: white;
padding: 2.5vh 5vw;
position: relative;
padding-bottom: 6vh;
@media ($tablet) {
padding: 3vh 3vw;
padding-bottom: 8vh;
}
&::after {
@include yellow-gradient-after;
}
}