2025-10-26 11:33:54 +01:00
|
|
|
@use "config";
|
|
|
|
|
|
2019-11-12 20:18:02 +01:00
|
|
|
// Basic styles
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
%basic {
|
2025-10-26 11:33:54 +01:00
|
|
|
font-family: config.$family_text_basic;
|
|
|
|
|
font-size: config.$size_text_1;
|
|
|
|
|
line-height: config.$line_text_basic;
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%basic_mono {
|
2025-10-26 11:33:54 +01:00
|
|
|
font-family: config.$family_text_mono;
|
|
|
|
|
font-size: config.$size_text_1;
|
|
|
|
|
line-height: config.$line_text_mono;
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%basic_print {
|
2025-10-26 11:33:54 +01:00
|
|
|
font-family: config.$family_text_print;
|
|
|
|
|
font-size: config.$size_text_1;
|
|
|
|
|
line-height: config.$line_text_basic;
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%head_all {
|
2025-10-26 11:33:54 +01:00
|
|
|
font-family: config.$family_head_basic;
|
|
|
|
|
line-height: config.$line_head_basic;
|
2019-11-12 20:18:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%head_1 {
|
2025-10-26 11:33:54 +01:00
|
|
|
font-size: config.$size_head_1;
|
2019-11-12 20:18:02 +01:00
|
|
|
font-weight: 300;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%head_2 {
|
2025-10-26 11:33:54 +01:00
|
|
|
font-size: config.$size_head_2;
|
2019-11-12 20:18:02 +01:00
|
|
|
font-weight: 300;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%head_3 {
|
2025-10-26 11:33:54 +01:00
|
|
|
font-size: config.$size_head_3;
|
2019-11-12 20:18:02 +01:00
|
|
|
font-weight: 300;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%head_4 {
|
2025-10-26 11:33:54 +01:00
|
|
|
font-size: config.$size_head_4;
|
2019-11-12 20:18:02 +01:00
|
|
|
font-weight: 300;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
%short {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
-o-text-overflow: ellipsis; // vendor
|
|
|
|
|
}
|