-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtext.scss
86 lines (71 loc) · 1.63 KB
/
text.scss
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/**
* Typography
*/
.text-heading-4xl,
.text-heading-3xl,
.text-heading-2xl,
.text-heading-xl,
.text-heading-lg,
.text-heading-md,
.text-heading-sm,
.text-heading-xs {
margin-block: 0;
}
.text-heading-4xl,
.text-heading-3xl,
.text-heading-2xl {
font-family: var(--bloom-font-serif);
font-weight: normal;
line-height: var(--bloom-line-height-heading);
}
.text-heading-4xl {
font-size: var(--bloom-type-heading-size-4xl);
}
.text-heading-3xl {
font-size: var(--bloom-type-heading-size-3xl);
}
.text-heading-2xl {
font-size: var(--bloom-type-heading-size-2xl);
}
.text-heading-xl,
.text-heading-lg,
.text-heading-md,
.text-heading-sm,
.text-heading-xs {
font-family: var(--bloom-font-alt-sans);
font-weight: var(--bloom-font-weight-semibold);
}
.text-heading-xl {
font-size: var(--bloom-type-heading-size-xl);
line-height: var(--bloom-line-height-heading);
}
.text-heading-lg {
font-size: var(--bloom-type-heading-size-lg);
line-height: var(--bloom-line-height-heading);
}
.text-heading-md,
.text-heading-sm,
.text-heading-xs {
line-height: var(--bloom-line-height-content);
}
.text-heading-md, .text-body {
font-size: var(--bloom-type-body-size);
}
.text-heading-sm, .text-label {
font-size: var(--bloom-type-label-size);
}
.text-heading-xs, .text-caption {
font-size: var(--bloom-type-caption-size);
}
/* Stop largest headings down one size for mobile */
@media (max-width: 640px) {
.text-heading-4xl {
font-size: var(--bloom-type-heading-size-3xl);
}
.text-heading-3xl {
font-size: var(--bloom-type-heading-size-2xl);
}
.text-heading-2xl {
font-size: var(--bloom-type-heading-size-xl);
}
}