Files
Globaly-CSS-Practice/style/_variables.scss
2024-06-24 07:52:54 +02:00

28 lines
640 B
SCSS
Executable File

$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;
}