26 lines
354 B
SCSS
26 lines
354 B
SCSS
/* 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;
|
|
|
|
|
|
.thin{
|
|
font-weight: 300;
|
|
}
|
|
.semibold{
|
|
font-weight: 600;
|
|
}
|
|
.bold{
|
|
font-weight: 700;
|
|
}
|
|
|
|
.italic{
|
|
font-style: italic;
|
|
}
|
|
|
|
.underline{
|
|
text-decoration: underline;
|
|
} |