mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-12 08:50:37 -07:00
33 lines
363 B
SCSS
33 lines
363 B
SCSS
|
|
.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;
|
|
}
|
|
|
|
.h1 {
|
|
@extend .font-bitter;
|
|
@extend .weight-600;
|
|
font-size: 40px;
|
|
}
|
|
|
|
.p {
|
|
@extend .font-cabin;
|
|
@extend .weight-400;
|
|
font-size: 17px;
|
|
}
|
|
|