-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (38 loc) · 626 Bytes
/
style.css
File metadata and controls
46 lines (38 loc) · 626 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Poppins", sans-serif;
}
h1 {
font-size: 2.5rem;
font-weight: 700;
}
h2 {
font-size: 1.8rem;
font-weight: 600;
}
h3 {
font-size: 1.4rem;
font-weight: 800;
}
h4 {
font-size: 1.1rem;
font-weight: 600;
}
h5 {
font-size: 1rem;
font-weight: 400;
color: #1d1d1d;
}
h6 {
color: #d8d8d8;
}
hr {
width: 30px;
height: 2px;
background-color: #fb774b;
}