28 lines
640 B
SCSS
28 lines
640 B
SCSS
$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;
|
|
}
|