-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.css
144 lines (125 loc) · 2.28 KB
/
navbar.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
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
#navbar_container {
width: 98%;
margin: auto;
}
nav {
width: 98%;
margin: auto;
padding: 15px 0;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
z-index: 5;
}
#logo_container {
width: 10%;
min-height: fit-content;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
position: relative;
top: 10px;
}
#logo_container > img {
width: 100%;
}
/* links-start */
#links {
width: 30%;
display: flex;
justify-content: space-between;
align-items: center;
margin-left: 100px;
cursor: pointer;
font-family: "Inter-Bold", "Roboto", sans-serif;
/* z-index: 5; */
}
#links > a {
text-decoration: none;
color: rgb(255 255 255 / 60%);
font-weight: 500;
font-size: 22px;
line-height: 22px;
}
#links > a:hover {
color: rgba(255, 255, 255, 0.781);
}
/* links-end */
#left_end {
display: flex;
justify-content: space-between;
align-items: center;
width: 25%;
}
#search_box {
width: 35%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
padding: 7px 10px;
border-radius: 5px;
}
#search_box:hover {
background: rgb(255 255 255 / 10%);
}
#search_box > p {
width: 65%;
border: none;
font-size: 14px;
color: rgb(255 255 255 / 60%);
letter-spacing: 0.5px;
margin-right: 10px;
}
#search_logo {
width: 25%;
}
#search_logo > img {
width: 100%;
}
#search_box {
display: flex;
}
#search_logo > img {
width: 100%;
}
#user_cart {
display: flex;
align-items: center;
}
#get_app {
background: transparent;
color: rgba(255, 255, 255, 0.75);
font-weight: 500;
padding: 10px 15px;
border: 2px solid rgba(255, 255, 255, 0.75);
border-radius: 5px;
cursor: pointer;
}
#get_app:hover {
border: 2px solid rgba(255, 255, 255, 0.5);
}
#user_logo_out,
#cart_logo_out {
width: 50%;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
#user_logo,
#cart_logo {
width: 60%;
padding: 9px 3px;
}
#user_logo_out:hover,
#cart_logo_out:hover {
background: rgb(255 255 255 / 10%);
}
#user_logo > img,
#cart_logo > img {
width: 100%;
}