Improved CMS page list
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / style / bootstrap / mixin / font.scss
CommitLineData
5908f54f
AE
1@mixin wcfFontDefault {
2 font-size: $wcfFontSizeDefault;
3 font-weight: 400;
4}
5
6@mixin wcfFontSmall {
7 font-size: $wcfFontSizeSmall;
8 font-weight: 400;
9}
10
11@mixin wcfFontBold {
12 font-weight: 600;
13}
14
15@mixin wcfFontHeadline {
16 font-size: $wcfFontSizeHeadline;
17 font-weight: 400;
18}
19
20@mixin wcfFontSection {
21 font-size: $wcfFontSizeSection;
22 font-weight: 300;
23}
24
25@mixin wcfFontTitle {
26 font-size: $wcfFontSizeTitle;
27 font-weight: 300;
28}
29
30@mixin wcfLineHeight {
31 line-height: $wcfFontLineHeight;
32}