first commit

This commit is contained in:
2024-12-20 12:48:12 +01:00
commit d9fb74972a
217 changed files with 26712 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
@use "colors" as *;
@use "typography" as *;
@use "breakpoints" as *;
@use "typography" as *;
body{
background-color: $white-color;
@include font-primary;
}
h1, h2, h3, h4, h5, h6{
@include font-primary;
font-weight: 700;
}
h1{
@include heading--xl;
}
h2{
@include heading--md;
}
h3{
@include heading--sm;
}
p{
font-weight: 400;
font-size: 1.8rem;
line-height: 150%;
letter-spacing: 4%;
margin-bottom: 26px;
@include responsive(tablet){
margin-bottom: 40px;
}
}
a{
transition: all;
color: $dark-color;
&:hover{
color: $accent-color;
}
}