UNPKG

1.23 kBSCSSView Raw
1// Typography
2
3// General properties
4body {
5 font-family: $mdb-font-family;
6 font-weight: $font-weight-light;
7}
8
9h1, h2, h3, h4, h5, h6 {
10 font-weight: $font-weight-light;
11}
12
13// Blockquote
14.blockquote {
15 padding: $blockquote-padding-y $blockquote-padding-x;
16 border-left: .25rem solid #eceeef;
17 &.text-right {
18 border-right: .25rem solid #eceeef;
19 border-left: none;
20 }
21 .bq-title {
22 margin-bottom: 0;
23 font-size: $font-size-large;
24 font-weight: 400;
25 }
26 p {
27 padding: $blockquote-p-padding-y 0;
28 font-size: $blockquote-p-font-size;
29 }
30}
31
32@each $name, $color in $basic {
33 .bq-#{$name} {
34 border-left: 3px solid $color !important;
35 .bq-title {
36 color: $color !important;
37 }
38 }
39}
40
41// Responsive headings
42@each $key, $val in $grid-breakpoints {
43 @include media-breakpoint-up($key) {
44 $y: map-get($responsive-headings, $key);
45 @each $name, $value in $y {
46 .#{$name}-responsive {
47 font-size: $value;
48 }
49 }
50 }
51}
52
53@each $name, $color in $basic-mdb-colors {
54 @include text-emphasis-variant(".text-#{$name}", $color);
55}
56
57.font-small {
58 font-size: $font-size-small;
59}
60
61strong {
62 font-weight: 500;
63}
\No newline at end of file