forked from yogeshkumawat007/Skinstore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnavbar.css
More file actions
171 lines (166 loc) · 2.75 KB
/
navbar.css
File metadata and controls
171 lines (166 loc) · 2.75 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
.container {
max-width: 1600px;
margin: 0 auto;
margin-bottom: 30px;
display: flex;
}
nav {
background-color: white;
box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
position: relative;
/* text-align: left; */
}
nav li {
display: inline-block;
}
nav a {
color: black;
text-decoration: none;
display: block;
padding: 0.75em 0.75em;
}
nav li:hover {
background-color: white;
}
nav a:hover {
background-color: black;
color: white;
}
.menu_sub {
position: absolute;
left: 50px;
width: 90%;
background-color:white;
display: none;
padding: 2em;
border: 0.5px solid grey;
}
.menu_sub li {
display: block;
}
nav li:hover .menu_sub {
display: block;
}
nav li:hover #brands-s {
display: block;
}
.menu_sub a {
padding: 0.2em;
margin-bottom: 0.2em;
}
.menu_sub a:hover {
background-color: white;
color: black;
}
.menu_cat {
margin: 0.5em 0 0.5em 0;
}
.menu_cat:first-of-type {
margin-top: 0;
}
.menu_col {
/* width: 50%; */
display: flex;
gap: 50px;
justify-content: space-evenly;
}
h4 {
padding-top: 10px;
border-top: 0.8px solid grey;
}
/* navbar ends */
#parent {
display: flex;
justify-content: space-around;
align-items: center;
border-bottom: 1.8px solid black;
padding-top: 12px;
padding-bottom: 12px;
background-color: #ffffff;
}
.Navigation{
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 10;
}
#logo {
width: 220px;
height: 84px;
}
#search_bar > input {
width: 380px;
height: 40px;
padding: 0px 10px;
border: 1px solid grey;
border-right: 0px;
font-size: 14px;
color: rgb(46, 51, 55);
font-family: "Lato", sans-serif;
}
#search_bar {
display: flex;
align-items: center;
gap: 0px;
}
#search_bar > button {
height: 42px;
width: 45px;
border: 1px solid grey;
/* margin-left: -10px; */
border-color: lightgrey;
}
#search_bar > button:hover {
border: none;
}
#acc_Cart > a button {
padding: 10px;
font-size: 17px;
width: 125px;
border: none;
background-color: #ffffff;
font-family: "Lato", sans-serif;
font-weight: 600;
color: #000000;
cursor: pointer;
/* margin-right: 20px; */
}
#acc_Cart > a button:hover {
background-color: rgb(229, 229, 229);
}
#acc_Cart > button{
padding: 10px;
font-size: 17px;
width: 125px;
border: none;
background-color: #ffffff;
font-family: "Lato", sans-serif;
font-weight: 600;
color: #000000;
cursor: pointer;
/* margin-right: 20px; */
}
#acc_Cart > button:hover {
background-color: rgb(229, 229, 229);
}
#menu {
display: flex;
margin: 0 150px 10px 150px;
}
#menu > p {
padding: 10px;
font-family: "Lato", sans-serif;
}
#menu > p:hover {
/* padding: 1px; */
cursor: pointer;
background-color: black;
color: white;
height: 25px;
}