feat: change to other sitepakage

This commit is contained in:
2024-12-12 12:31:41 +01:00
parent 948513cc41
commit 2bac342a5e
147 changed files with 1060 additions and 28057 deletions

View File

@@ -0,0 +1,20 @@
.container {
margin: auto;
padding: 3rem 1rem;
@include respond($breakpoint-sm) {
max-width: 540px;
}
@include respond($breakpoint-md) {
max-width: 720px;
}
@include respond($breakpoint-lg) {
max-width: 960px;
}
@include respond($breakpoint-xl) {
max-width: 1140px;
}
}

View File

@@ -0,0 +1,5 @@
body {
font-family: $font-stack;
color: $primary-color;
line-height: 1.5;
}

View File

@@ -0,0 +1,6 @@
// A simple CSS reset, adapt as needed
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

View File

@@ -0,0 +1,3 @@
@import 'reset';
@import 'global';
@import 'container';