-
-
Notifications
You must be signed in to change notification settings - Fork 319
Expand file tree
/
Copy pathtypography.scss
More file actions
78 lines (68 loc) · 864 Bytes
/
typography.scss
File metadata and controls
78 lines (68 loc) · 864 Bytes
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
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
padding: 0;
margin: 1em 0;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
font-weight: bold;
}
h1,
.h1 {
font-size: 1.5rem;
}
h2,
.h2 {
font-size: 1.25rem;
}
h3,
.h3 {
font-size: 1.125rem;
}
h4,
.h4,
h5,
.h5 {
font-size: 1rem;
}
h5,
.h5 {
font-weight: normal;
}
p {
margin: 0 0 var(--spacing-2) 0;
white-space: normal;
a {
color: inherit;
text-decoration-line: underline;
text-decoration-color: var(--text-link-color);
text-decoration-thickness: 1px;
&:hover {
text-decoration-color: transparent;
}
}
}
kbd,
code {
border: 1px solid var(--code-border-color);
border-radius: var(--border-radius_medium);
background: var(--code-background-color);
font-family: Courier, monospaced;
margin: 0 0.25ex;
padding: 0.25em 0.5em;
vertical-align: baseline;
}