-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfund.css
56 lines (53 loc) · 1022 Bytes
/
fund.css
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
@font-face {
font-family: "Catamaran";
src: url("Catamaran-VariableFont_wght.ttf");
font-style: normal;
}
@font-face {
font-family: "Mulish";
src: url("Mulish-VariableFont_wght.ttf");
font-style: normal;
}
:root {
--highlight: #fb2c07;
--heading-family: Catamaran, sans-serif;
--body-family: Mulish, sans-serif;
}
body {
font-family: var(--body-family);
font-size: 1.25rem;
line-height: 1.5;
font-weight: 300;
}
main {
margin: 4rem auto;
max-width: 80ch;
}
h1 {
/* font-family: var(--heading-family);
font-weight: 700;
font-size: 3.75rem;
line-height: 1;
margin: 0;
padding: 0; */
background: var(--highlight);
color: white;
font-family: var(--heading-family);
font-size: 4rem;
font-weight: 900;
line-height: 1;
margin: 0;
padding: 1rem 1rem .5rem;
text-transform: uppercase;
}
h2, h3 {
margin-bottom: 0;
font-family: var(--heading-family);
}
h2 + p, h3 + p, h2 + ul, h3 + ul {
margin-top: 0;
}
a {
color: var(--highlight);
text-decoration: none;
}