2024-01-02 16:10:06 +01:00
|
|
|
|
2024-01-18 21:49:29 +01:00
|
|
|
$font-stack: chiaro;
|
|
|
|
|
2024-01-07 23:11:17 +01:00
|
|
|
@mixin set-font-sizing($sz, $spacing) {
|
2024-01-18 21:49:29 +01:00
|
|
|
// font-family: $font-stack;
|
2024-03-03 21:57:19 +01:00
|
|
|
$sz-add: $sz + 4;
|
|
|
|
font-size: space($sz-add);
|
|
|
|
letter-spacing: space($sz-add * $spacing);
|
|
|
|
line-height: space($sz-add);
|
2024-01-07 23:11:17 +01:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2024-03-28 23:18:10 +01:00
|
|
|
%label-xs {
|
|
|
|
@include set-font-sizing(14, 0.14);
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
2024-01-02 16:10:06 +01:00
|
|
|
%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;
|
|
|
|
}
|
2024-01-18 21:49:29 +01:00
|
|
|
|
2024-02-24 19:51:58 +01:00
|
|
|
%prompt-font-lg {
|
|
|
|
font-family: promptfont;
|
2024-04-21 17:54:48 +02:00
|
|
|
font-size: space(56);
|
2024-02-24 19:51:58 +01:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: space(56);
|
|
|
|
}
|
|
|
|
|
2024-01-18 21:49:29 +01:00
|
|
|
%prompt-font {
|
|
|
|
font-family: promptfont;
|
2024-04-21 17:54:48 +02:00
|
|
|
font-size: space(40);
|
2024-01-18 21:49:29 +01:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: space(40);
|
|
|
|
}
|
2024-01-22 17:43:21 +01:00
|
|
|
|
|
|
|
%prompt-font-sm {
|
|
|
|
font-family: promptfont;
|
2024-04-21 17:54:48 +02:00
|
|
|
font-size: space(32);
|
2024-01-22 17:43:21 +01:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: space(32);
|
|
|
|
}
|