oficinasuport-wp-theme/sass/base/typography/_headings.scss

65 lines
1001 B
SCSS
Raw Normal View History

@media screen {
h1,
h2,
h3,
h4,
h5 {
text-transform: uppercase;
clear: both;
2022-12-28 22:52:36 +01:00
line-height: $font__line-height-header;
}
h1 {
font-family: $font__light;
font-size: $font__size-body*1.8;
}
h2 {
font-family: $font__light;
font-size: $font__size-body*1.5;
}
h3 {
font-family: $font__black;
font-size: $font__size-body*1.3;
}
h4 {
font-family: $font__bold;
font-size: $font__size-body*1.2;
}
h5 {
font-family: $font__medium;
font-size: $font__size-body*1.1;
}
h6 {
font-family: $font__light;
font-size: $font__size-body*1.1;
}
2022-12-29 01:15:31 +01:00
.single {
h1 {
font-family: $font__black;
}
}
}
@media screen and (min-width: 48em) {
h1 {
font-size: $font__size-body*3.5;
}
h2 {
font-size: $font__size-body*2.5;
}
h3 {
font-size: $font__size-body*2;
}
h4 {
font-family: $font__black;
font-size: $font__size-body*1.7;
}
h5 {
font-size: $font__size-body*1.5;
}
h6 {
font-size: $font__size-body*1.5;
}
}
@media screen and (min-width: 80em) {
}