sqm-dashboards/app/assets/stylesheets/fonts.scss
rebuilt b29107688e Use category presenters on page.
Show category and subcategory cards

Conditionally render subcategory icons

fix styling
2021-10-07 16:19:19 +02:00

64 lines
833 B
SCSS

@import 'colors';
.font-bitter {
font-family: 'Bitter', serif;
}
.font-cabin {
font-family: 'Cabin', sans-serif;
}
.weight-700 {
font-weight: 700;
}
.weight-600 {
font-weight: 600;
}
.weight-400 {
font-weight: 400;
}
.sub-header {
@extend .font-bitter;
@extend .weight-600;
font-size: 40px;
}
.sub-header-2 {
@extend .font-bitter;
@extend .weight-700;
font-size: 28px;
}
.sub-header-3 {
@extend .font-bitter;
@extend .weight-700;
font-size: 20px;
}
.sub-header-4 {
@extend .font-bitter;
@extend .weight-600;
font-size: 16px;
}
.body-large {
@extend .font-cabin;
@extend .weight-400;
font-size: 16px;
line-height: 1.3;
}
.body-small {
@extend .font-cabin;
@extend .weight-400;
font-size: 14px;
line-height: 1.3;
}
.link {
@extend .color-blue;
text-decoration: none;
}