-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypography.scss
89 lines (73 loc) · 994 Bytes
/
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
85
86
87
88
89
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-headings);
line-height: 1.3em;
margin: 30px 0 20px 0;
font-weight: bold;
color: var(--heading-color);
}
h1 {
font-size: 2.7rem;
}
h2 {
font-size: 2.3rem;
}
h3 {
font-size: 1.95rem;
}
h4 {
font-size: 1.55rem;
}
h5 {
font-size: 1.25rem;
}
h6 {
font-size: 1rem;
}
blockquote {
margin-left: 1rem;
font-style: italic;
font-size: 1.4rem;
font-family: Georgia, bitstream charter, serif;
border-left: 3px solid;
border-color: var(--text-color);
padding-left: 20px;
}
blockquote cite {
font-size: 70%;
opacity: 0.8;
}
blockquote em {
font-weight: 600;
}
a {
color: var(--primary);
text-decoration: none;
}
a:hover,
a.active {
text-decoration: underline;
}
input:focus,
textarea:focus {
outline: none;
}
pre,
code {
font-family: var(--font-monospace);
text-rendering: optimizeLegibility;
}
@media (max-width: 700px) {
h1,
h2,
h3,
h4,
h5,
h6 {
letter-spacing: 1px;
}
}