This commit is contained in:
Sven Ullmann 2025-07-19 23:58:24 +02:00
commit 58842c665e
69 changed files with 8357 additions and 0 deletions

31
lib/_defaults.scss Normal file
View file

@ -0,0 +1,31 @@
*, :before, :after {
box-sizing: border-box;
}
html {
height: 100vh;
}
body {
@include layout(column);
flex-wrap: nowrap;
font-size: 16px;
line-height: 1.8rem;
height: 100vh;
}
.section {
flex: 0 0 auto;
& > .container {
margin: 0 auto;
width: 100%;
@include breakpoint('screen', 'xs') { max-width: 100vw; }
@include breakpoint('screen', 's') { max-width: 100vw; }
@include breakpoint('screen', 'm') { max-width: 95vw; }
@include breakpoint('screen', 'l') { max-width: 90vw; }
@include breakpoint('screen', 'xl') { max-width: rem(1400); }
@include breakpoint('screen', 'xxl') { max-width: rem(1600); }
}
}