-
Notifications
You must be signed in to change notification settings - Fork 0
/
headerchangehome.css
95 lines (84 loc) · 1.57 KB
/
headerchangehome.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
* {
margin: 0;
padding: 0;
box-sizing: border-box;
letter-spacing: 1px;
}
.left {
display: flex;
align-items: center;
justify-content: center;
background: white;
padding: 10px 12px;
position: sticky;
}
.menuItem {
display: flex;
width: 100%;
align-items: center;
transition: all 0.5s ease-in;
justify-content: space-between;
}
.menuItems {
font-size: 20px;
font-weight: 600;
cursor: pointer;
font-size: 14px;
color: black;
opacity: 0.6;
text-decoration: none;
padding: 0px 10px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
}
.menuSiteLogoIcon img {
width: 80px;
height: 80px;
}
.menuItems:hover {
opacity: 1;
}
.menuSiteLogoIcon i {
display: none;
}
.right {
display: flex;
background: maroon;
position: sticky;
/* overflow-x: scroll; */
}
.right a {
text-align: center;
width: 12%;
cursor: pointer;
color: white;
text-decoration: none;
padding: 14px 12px;
min-width: fit-content;
font-weight: 700;
}
.right a:hover {
background-color: orange;
text-decoration: none;
}
.headerSearch {
display: flex;
margin-left: auto;
align-items: center;
}
#headerSearchBox {
padding: 8px 10px;
outline: none;
border-radius: 4px;
border: none;
}
.headerSearchBtn {
border: 1px solid #ffffff;
padding: 8px;
cursor: pointer;
color: black;
margin-left: 12px;
border-radius: 4px;
}