-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (40 loc) · 680 Bytes
/
Copy pathstyle.css
File metadata and controls
46 lines (40 loc) · 680 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=Roboto:wght@400;700;900&display=swap");
:root {
max-width: fit-content;
margin-left: auto;
margin-right: auto;
background-color: #151515;
color: #e7e7e7;
font-family: "Roboto", sans-serif;
font-weight: 400;
font-style: normal;
}
header {
display: flex;
flex-direction: column;
align-items: center;
max-width: 90%;
margin: 0 auto;
padding: 0 3rem;
}
h1 {
font-size: 3rem;
font-weight: 700;
text-align: center;
}
ul {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 4rem;
list-style: none;
padding: 0;
margin: 0;
}
li {
flex: 1 1 auto;
font-weight: 700;
}
a {
font-size: 1.5rem;
}