-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (51 loc) · 897 Bytes
/
style.css
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
body {
display: flex;
justify-content: center;
align-items: center;
overflow: none;
background-color: black;
height: 100vh;
margin: 0;
font-family: 'Outfit', sans-serif;
}
canvas {
overflow: none;
}
section {
position: absolute;
bottom: 20px;
width: 100%;
display: flex;
justify-content: center;
padding: 0;
margin: 0;
}
nav {
background-color: black;
width: fit-content;
border-radius: 150px;
padding: 0;
margin: 0;
}
ul {
list-style: none;
display: flex;
flex-direction: row;
justify-content: center;
text-align: center;
font-size: 1.2em;
gap: 15px;
padding: 20px 10px;
border-radius: 15px;
margin: 0;
}
a {
text-decoration: none;
color: white;
padding: 10px 15px;
}
a.active {
background-color: white;
color: black;
border-radius: 140px;
}