-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
67 lines (67 loc) · 1.17 KB
/
Copy pathheader.css
File metadata and controls
67 lines (67 loc) · 1.17 KB
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
59
60
61
62
63
64
65
66
67
.header {
height: 60px;
display: flex;
align-items: center;
background-color: #131921;
position: sticky;
top: 0;
z-index: 100;
}
.header_logo {
width: 100px;
object-fit: contain;
margin: 0 20px;
margin-top: 18px;
}
.header_search {
display: flex;
flex: 1;
align-items: center;
border-radius: 24px;
}
.header_searchInput {
height: 12px;
padding: 10px;
border: none;
width: 100%;
}
.header_searchIcon {
padding: 5px;
height: 22px !important;
background-color: #cd9042;
}
.header_optionLineOne {
font-size: 10px;
}
.header_optionLineTwo {
font-size: 13px;
font-weight: 800;
}
.header_nav {
display: flex;
justify-content: space-evenly;
}
.header_option {
display: flex;
flex-direction: column;
margin-left: 10px;
margin-right: 10px;
color: white;
}
.header_optionBasket {
display: flex;
align-items: center;
color: white;
}
.header_basketCount {
margin-left: 10px;
margin-right: 10px;
}
.header_signOut {
margin-bottom: 5px;
background-color: orange;
border-radius: 2px;
border: 1px solid;
margin-top: 10px;
border-color: #a88734 #9c7e31 #846a29;
}