-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_typography.scss
84 lines (84 loc) · 1.61 KB
/
_typography.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
h1 {
font-family: var(--font-family);
font-size: 96px;
letter-spacing: -1.5px;
font-weight: 300;
color: var(--body-headline-color);
}
h2 {
font-family: var(--font-family);
font-size: 60px;
letter-spacing: -0.5;
font-weight: 300;
color: var(--body-headline-color);
}
h3 {
font-family: var(--font-family);
font-size: 48px;
letter-spacing: 0px;
font-weight: 400;
color: var(--body-headline-color);
}
h4 {
font-family: var(--font-family);
font-size: 34px;
letter-spacing: 2.5px;
font-weight: 400;
color: var(--body-headline-color);
}
h5 {
font-family: var(--font-family);
font-size: 24px;
letter-spacing: 0px;
font-weight: 400;
color: var(--body-headline-color);
}
h6 {
font-family: var(--font-family);
font-size: 20px;
letter-spacing: 0.15px;
font-weight: 500;
color: var(--body-headline-color);
}
p.body1 {
font-family: var(--font-family);
font-size: 16px;
letter-spacing: 0.5px;
font-weight: 400;
}
p.body2 {
font-family: var(--font-family);
font-size: 14px;
letter-spacing: 0.25px;
font-weight: 400;
}
p.subtitle1 {
font-family: var(--font-family);
font-size: 16px;
letter-spacing: 0.15px;
font-weight: 400;
}
p.subtitle2 {
font-family: var(--font-family);
font-size: 14px;
letter-spacing: 0.1px;
font-weight: 500;
}
button {
font-family: var(--font-family);
font-size: 14px;
font-weight: 500;
text-transform: uppercase;
}
p.overline {
font-family: var(--font-family);
font-size: 10px;
letter-spacing: 0.4px;
font-weight: 400;
}
p.caption {
font-family: var(--font-family);
font-size: 12px;
letter-spacing: 0.15px;
font-weight: 400;
}