blob: eb52d519f82cf1c1c0b8817f50aa702b46728c19 (
plain) (
blame)
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
|
.heading-text {
font-family: "Fira Sans", sans-serif;
font-size: 2em;
font-weight: 600;
line-height: 1.2em;
padding: 10px 0 25px 0;
color: var(--secondary-text-color);
}
h1, .title-text {
font-family: "Fira Sans", sans-serif;
font-size: 1.8em;
line-height: 1.2em;
font-weight: 500;
color: var(--secondary-text-color);
border-left: var(--primary-color) 8px solid;
padding-left: 10px;
}
h2, .title-text {
font-family: "Fira Sans", sans-serif;
font-size: 1.5em;
font-weight: 500;
color: var(--secondary-text-color);
border-left: #aaa 8px solid;
padding-left: 10px;
}
h3, .subtitle-text {
font-family: "Fira Sans", sans-serif;
font-size: 1.3em;
font-weight: 500;
color: var(--secondary-text-color);
}
.text {
font-family: "Fira Sans", sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 26px;
letter-spacing: 0.2px;
color: var(--secondary-text-color);
}
.subtext {
font-family: "Fira Sans", sans-serif;
font-size: 16px;
font-weight: 400;
letter-spacing: 0.1px;
}
|