-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (42 loc) · 706 Bytes
/
style.css
File metadata and controls
48 lines (42 loc) · 706 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.navbar {
display: flex;
background-color: rgb(45, 45, 157);
justify-content: center;
gap: 100px;
height: 50px;
width: 100%;
align-items: center;
}
.logo {
margin-left: 200px;
width: 125px;
height: 30px;
}
.items {
display: flex;
justify-content: space-between;
align-items: center;
gap: 30px;
margin: 16px 0;
}
.right {
display: flex;
justify-content: center;
gap: 30px;
margin-right: 200px;
}
.container {
position: relative;
height: 100%;
}
.line {
position: absolute;
height: 50px;
background-color: rgb(64, 172, 230);
bottom: 0;
}