2021-08-12 12:16:05 +02:00
|
|
|
/* FONTI */
|
|
|
|
|
|
|
|
// Google Fonts - open sans
|
|
|
|
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,400i,600,700&subset=latin-ext");
|
|
|
|
|
|
|
|
|
|
|
|
$font: 'Montserrat', sans-serif;
|
2022-07-15 13:22:12 +02:00
|
|
|
$SansPro_font: "Source Sans Pro", "sans-serif";
|
2021-08-12 12:16:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
.thin{
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
.semibold{
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
.bold{
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.italic{
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.underline{
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|