-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (48 loc) · 928 Bytes
/
Copy pathstyle.css
File metadata and controls
63 lines (48 loc) · 928 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
58
59
60
61
62
63
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #000;
width: 100%;
height: 100vh;
font-family: "Public Sans", sans-serif;
}
.container {
width: 100%;
display: flex;
/* text-align: center;
justify-content: center; */
}
.top-box {
width: 100%;
height: 50px;
display: flex;
justify-content: space-around;
}
nav {
display: flex;
align-items: center;
width: 100%;
}
.log {
display: flex;
padding-left: 50px;
width: 80%;
}
.nav-links {
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
text-align: right;
}
nav a {
background-color: #fff;
color: #000;
text-decoration: none;
padding: 10px 20px;
border-radius: 13px;
}