File size: 1,009 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
@import "@automattic/typography/styles/variables";
@import "calypso/assets/stylesheets/shared/mixins/breakpoints";
.card-heading {
font-weight: 400;
margin-bottom: 5px;
margin-top: 5px;
@include breakpoint-deprecated( ">960px" ) {
margin-bottom: 10px;
margin-top: 10px;
}
}
.card-heading-54 {
font-size: $font-headline-large;
}
/* 47px is deprecated, use .card-heading-48 */
.card-heading-47,
.card-heading-48 {
font-size: $font-headline-medium;
}
.card-heading-36 {
font-size: $font-headline-small;
}
.card-heading-32 {
font-size: $font-title-large;
}
.card-heading-24 {
font-size: $font-title-medium;
}
/* 21px is deprecated, use .card-heading-20 */
.card-heading-21,
.card-heading-20 {
font-size: $font-title-small;
}
.card-heading-16 {
font-size: $font-body;
}
.card-heading-14 {
font-size: $font-body-small;
}
/* 11px is deprecated, use .card-heading-12 */
.card-heading-11,
.card-heading-12 {
font-size: $font-body-extra-small;
}
.card-heading__bold {
font-weight: 600;
}
|