-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_typography.scss
More file actions
96 lines (86 loc) · 1.06 KB
/
_typography.scss
File metadata and controls
96 lines (86 loc) · 1.06 KB
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
87
88
89
90
91
92
93
94
95
96
html {
font-size: 16px;
}
html,
input,
textarea,
button,
select,
::file-selector-button {
font-family: var(--font-family);
}
h {
&1 {
font-weight: 700;
font-size: 2.25rem;
line-height: 2.5rem;
}
&2 {
font-weight: 600;
font-size: 1.875rem;
line-height: 2.25rem;
}
&3 {
font-weight: 600;
font-size: 1.5rem;
line-height: 2rem;
}
&4 {
font-weight: 600;
font-size: 1.25rem;
line-height: 1.75rem;
}
&5 {
font-weight: 600;
font-size: 1.125rem;
line-height: 1.5rem;
}
&6 {
font-weight: 600;
font-size: 1rem;
line-height: 1.5rem;
}
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin-block: 0;
}
a {
color: inherit;
font-weight: 500;
text-decoration: inherit;
text-decoration-line: underline;
text-underline-offset: 4px;
}
p {
font-weight: 400;
font-size: 1rem;
line-height: 1.75rem;
}
blockquote {
border-left-width: 2px;
border-color: #27272a;
font-style: italic;
}
del {
color: #7f1d1d;
}
small {
font-size: 0.875em;
}
sub,
sup {
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}