-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
53 lines (51 loc) · 801 Bytes
/
App.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
.header {
color:white;
background-color: black;
display: flex;
align-items: center;
top: 0;
z-index: 100;
position: sticky;
}
.header_option {
display: flex;
flex-direction: column;
margin: 10px;
margin-right: 10px;
}
.header_searchBar {
display: flex;
flex: 1;
}
.header_searchInput {
height: 12px;
padding: 10px;
border: none;
width: 100%;
background-color: lightseagreen ;
margin-left: 20px;;
}
.header_logo {
width:70px;
margin-top: 5px;
margin-left: 10px;
margin-right: 10px;
}
.header_optionOne {
font-size: 20px;
padding: 10px;
}
.header_optionTwo {
font-size: 20px;
padding: 10px;
}
.searchIcon {
background-color:red;
padding: 4px;
height: 22px;
}
.header_nav {
justify-content: space-evenly;
display: flex;
padding: 30px;
}