-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (48 loc) · 749 Bytes
/
style.css
File metadata and controls
57 lines (48 loc) · 749 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
47
48
49
50
51
52
53
54
55
56
57
body {
font-family: "Work Sans", sans-serif;
font-weight: 400;
margin: 1rem;
padding-left: 6rem;
padding-right: 6rem;
align-content: center;
background-color: #f5f7f8;
}
header {
max-width: 65rem;
margin: 1rem auto 1rem;
font-size: larger;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-left {
text-align: left;
}
.nav-right {
text-align: end;
display: flex;
gap: 1rem;
}
main {
max-width: 65rem;
margin: 4rem auto 4rem;
text-align: left;
h1 {
font-weight: 400;
}
p {
font-size: larger;
}
.links {
margin-top: 3rem;
display: flex;
gap: 1rem;
a {
font-size: larger;
}
img {
width: 40px;
height: 40px;
}
}
}