first commit

This commit is contained in:
2024-05-31 16:34:01 +02:00
commit f3c4a2a5be
34 changed files with 2454 additions and 0 deletions

27
style/_variables.scss Normal file
View File

@@ -0,0 +1,27 @@
$numberfont : 'Lato';
$lightblue: #15c1c6;
// FONTS
@font-face {
font-family: "MerriweatherSans";
src: url("../assets/fonts/MerriweatherSans-Regular.ttf") format("truetype");
}
@font-face {
font-family: "Lato";
src: url("../assets/fonts/Lato-Bold.ttf") format("truetype");
}
@font-face {
font-family: "Merriweather";
src: url("../assets/fonts/Merriweather-Regular.ttf") format("truetype");
}
@mixin button{
text-transform: uppercase;
border-radius: 29px;
font-family: $numberfont;
font-weight: 900;
font-style: normal;
padding: 19px 38px;
font-size: 1rem;
letter-spacing: .04em;
}