33 lines
479 B
SCSS
33 lines
479 B
SCSS
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5 {
|
|
text-transform: uppercase;
|
|
clear: both;
|
|
}
|
|
h1 {
|
|
font-family: $font__light;
|
|
font-size: $font__size-body*3.5;
|
|
}
|
|
h2 {
|
|
font-family: $font__light;
|
|
font-size: $font__size-body*2.5;
|
|
}
|
|
h3 {
|
|
font-family: $font__black;
|
|
font-size: $font__size-body*1.5;
|
|
}
|
|
h4 {
|
|
font-family: $font__bold;
|
|
font-size: $font__size-body*1.3;
|
|
}
|
|
h5 {
|
|
font-family: $font__medium;
|
|
font-size: $font__size-body*1.3;
|
|
}
|
|
h6 {
|
|
font-family: $font__light;
|
|
font-size: $font__size-body*1.1;
|
|
}
|