2024-01-02 16:10:06 +01:00
|
|
|
|
2024-01-07 23:11:17 +01:00
|
|
|
@mixin set-font-sizing($sz, $spacing) {
|
|
|
|
font-size: space($sz);
|
|
|
|
letter-spacing: space($sz * $spacing);
|
|
|
|
line-height: space($sz);
|
|
|
|
}
|
|
|
|
|
2024-01-02 16:10:06 +01:00
|
|
|
%header-1 {
|
2024-01-07 23:11:17 +01:00
|
|
|
@include set-font-sizing(64, 0.07);
|
2024-01-02 16:10:06 +01:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
%header-2 {
|
2024-01-07 23:11:17 +01:00
|
|
|
@include set-font-sizing(48, 0.07);
|
2024-01-02 16:10:06 +01:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
%header-3 {
|
2024-01-07 23:11:17 +01:00
|
|
|
@include set-font-sizing(32, 0.07);
|
2024-01-02 16:10:06 +01:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
%label-lg {
|
2024-01-07 23:11:17 +01:00
|
|
|
@include set-font-sizing(32, 0.11);
|
2024-01-02 16:10:06 +01:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
%label-md {
|
2024-01-07 23:11:17 +01:00
|
|
|
@include set-font-sizing(24, 0.11);
|
2024-01-02 16:10:06 +01:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
%label-sm {
|
2024-01-07 23:11:17 +01:00
|
|
|
@include set-font-sizing(16, 0.14);
|
2024-01-02 16:10:06 +01:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
%body {
|
2024-01-07 23:11:17 +01:00
|
|
|
@include set-font-sizing(16, 0.0);
|
2024-01-02 16:10:06 +01:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|