-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtypography.css
More file actions
70 lines (58 loc) · 965 Bytes
/
Copy pathtypography.css
File metadata and controls
70 lines (58 loc) · 965 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
html {
text-size-adjust: 100%;
}
body {
font-family: var(--font-family);
font-size: var(--body-font-size);
font-weight: var(--font-weight-normal);
line-height: var(--line-height-medium);
text-shadow: var(--text-shadow);
}
h1 {
font-size: var(--h1-font-size);
}
h2 {
font-size: var(--h2-font-size);
}
h3 {
font-size: var(--h3-font-size);
}
h4 {
font-size: var(--h4-font-size);
}
a,
p,
label,
input,
button {
letter-spacing: var(--letter-spacing-normal);
}
h1,
h2,
h3,
h4 {
font-weight: var(--font-weight-bold);
line-height: var(--line-height);
color: var(--header-font-color);
letter-spacing: var(--letter-spacing);
}
.smallFont {
font-size: var(--small-font-size);
}
.strong {
font-weight: var(--font-weight-bold);
}
.link {
position: relative;
@media (hover: hover) {
&:hover,
&:focus {
text-decoration: underline;
}
}
}
.sentenceCase {
&::first-letter {
text-transform: uppercase;
}
}