nav-bar.component.css
513 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
.Navbar {
padding: 0% 2% 0% 2%;
height: 100%;
background-color: black;
display: flex;
justify-content: space-between;
align-items: center;
}
.NavText {
color: white;
float: right;
}
.NavLogo {
float: left;
width: 20%;
}
.NavSearchContainer {
margin-left: 20%;
width: 35%;
justify-content: center;
display: flex;
justify-content: space-between;
}
.NavInput {
margin-right: 10%;
height: 40%;
width: 90%;
float: right;
padding: 6px;
border: none;
font-size: 17px;
border-radius: 10px;
}