notes/_sass/support/mixins/_typography.scss

85 lines
1.4 KiB
SCSS
Raw Normal View History

2017-03-24 13:47:37 +00:00
@mixin fs-1 {
font-size: $font-size-1 !important;
2017-03-24 13:47:37 +00:00
@include mq(sm) {
font-size: $font-size-1-sm !important;
2017-03-24 13:47:37 +00:00
}
}
@mixin fs-2 {
font-size: $font-size-2 !important;
2017-03-24 13:47:37 +00:00
@include mq(sm) {
font-size: $font-size-3 !important;
2017-03-24 13:47:37 +00:00
}
}
@mixin fs-3 {
font-size: $font-size-3 !important;
2017-03-24 13:47:37 +00:00
@include mq(sm) {
font-size: $font-size-4 !important;
2017-03-24 13:47:37 +00:00
}
}
@mixin fs-4 {
font-size: $font-size-4 !important;
2017-03-24 13:47:37 +00:00
@include mq(sm) {
font-size: $font-size-5 !important;
2017-03-24 13:47:37 +00:00
}
}
@mixin fs-5 {
font-size: $font-size-5 !important;
2017-03-24 13:47:37 +00:00
@include mq(sm) {
font-size: $font-size-6 !important;
2017-03-24 13:47:37 +00:00
}
}
@mixin fs-6 {
font-size: $font-size-6 !important;
2017-03-24 13:47:37 +00:00
@include mq(sm) {
2020-07-20 21:48:56 +00:00
font-size: $font-size-7 !important;
2020-05-01 21:32:33 +00:00
line-height: $body-heading-line-height;
2017-03-24 13:47:37 +00:00
}
}
@mixin fs-7 {
font-size: $font-size-7 !important;
2020-05-01 21:32:33 +00:00
line-height: $body-heading-line-height;
2017-03-24 13:47:37 +00:00
@include mq(sm) {
2020-07-20 21:48:56 +00:00
font-size: $font-size-8 !important;
2017-03-24 13:47:37 +00:00
}
}
@mixin fs-8 {
font-size: $font-size-8 !important;
2020-05-01 21:32:33 +00:00
line-height: $body-heading-line-height;
2017-03-24 13:47:37 +00:00
@include mq(sm) {
2020-07-20 21:48:56 +00:00
font-size: $font-size-9 !important;
2017-03-24 13:47:37 +00:00
}
}
@mixin fs-9 {
font-size: $font-size-9 !important;
2020-05-01 21:32:33 +00:00
line-height: $body-heading-line-height;
2017-03-24 13:47:37 +00:00
@include mq(sm) {
font-size: $font-size-10 !important;
2017-03-24 13:47:37 +00:00
}
}
@mixin fs-10 {
font-size: $font-size-10 !important;
2020-05-01 21:32:33 +00:00
line-height: $body-heading-line-height;
2017-03-24 13:47:37 +00:00
@include mq(sm) {
font-size: $font-size-10-sm !important;
2017-03-24 13:47:37 +00:00
}
}