nav-bar.component.css
690 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
.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, .NavSuggestion {
outline: none;
padding: 6px;
font-size: 17px;
border-radius: 10px;
}
.NavInput {
border: none;
float: right;
margin-right: 10%;
width: 100%;
height: 40%;
}
.NavSuggestion {
width: 27%;
background-color: white;
border: solid 1px grey;
position: absolute;
top: 50px;
z-index: 1;
}