-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (65 loc) · 1.08 KB
/
Copy pathstyle.css
File metadata and controls
79 lines (65 loc) · 1.08 KB
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
@font-face {
font-family: "Poppins";
src: local("Poppins Light"),
local(Poppins-Light),
url("fonts/Poppins/Poppins-Light.ttf");
font-weight: 300;
}
@font-face {
font-family: "Poppins";
src: local("Poppins Regular"),
local(Poppins-Regular),
url("fonts/Poppins/Poppins-Regular.ttf");
font-weight: 400;
}
@font-face {
font-family: "Poppins";
src: local("Poppins Medium"),
local(Poppins-Medium),
url("fonts/Poppins/Poppins-Medium.ttf");
font-weight: 500;
}
:root {
font-family: "Poppins", sans-serif;
font-size: 100%;
}
body {
margin: 70px;
}
h1 {
font-size: 3.6rem;
font-weight: 300;
margin: 0;
}
h2 {
font-size: 1.6rem;
font-weight: 400;
margin: 0;
}
h3 {
font-size: 1.1rem;
font-weight: 500;
}
ul {
list-style-type: "- ";
padding-inline-start: 20px;
}
#main-container {
display: flex;
margin-top: 50px;
}
.section {
padding: 0 20px;
}
.section:first-child {
padding-left: 0;
}
.section:last-child {
padding-right: 0;
}
.section:not(:last-child) {
border-right: 1px dotted #bbb;
}
.section > h3 {
margin-top: 0;
}