-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-navbar.html
87 lines (77 loc) · 4 KB
/
main-navbar.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="fonts.css">
<link rel="stylesheet" href="CSS/style.css">
</head>
<body>
<!-- main Navbar -->
<nav class="w-full sticky top-0 h-20 bg-main-navbar-background flex">
<div class="ml-36 mr-36 w-full flex">
<!-- left -->
<div class="w-auto h-full flex">
<img class="h-full " src="assets/logo.png" />
<div class="h-full w-full flex flex-col justify-center">
<div class="w-full text-center text-white text-4xl font-bold font-['IM FELL English']">QuikShelf
</div>
<div class="w-full text-center text-white text-base font-normal font-['Montez']">Final Destination
for all Book Needs</div>
</div>
</div>
<!-- search -->
<div class="grow min-w-52 ml-5 mr-5 h-full flex place-items-center">
<div class="w-full h-11 bg-[#d9d9d9] rounded-full shadow relative flex">
<div class="ml-6 text-center text-black text-xl font-normal font-['Nunito Sans'] self-center">Search
</div>
<div class="w-8 h-8 bg-search-button bg-no-repeat bg-full absolute right-3 self-center"></div>
</div>
</div>
<!-- right -->
<div class="h-full justify-start items-center gap-5 inline-flex ml-auto right-0">
<!-- Wallet Balance -->
<div class="w-28 h-14 relative">
<div class="bg-[#d9d9d9] rounded-2xl shadow flex flex-col justify-center place-items-center">
<div class=" text-black text-base font-normal font-['Nunito Sans']">My Wallet</div>
<div class="flex gap-2 place-items-center justify-center">
<div class="w-6 h-6 bg-coin01 bg-full"></div>
<div class="text-black text-xl font-bold font-['Nunito Sans']">100</div>
</div>
</div>
</div>
<!-- Location -->
<div class="justify-start items-center gap-1.5 flex">
<div class="w-6 h-6 relative bg-location01 bg-full bg-no-repeat"></div>
<div class="text-[#d9d9d9] text-sm font-black font-['Roboto'] capitalize">delhi, IN</div>
</div>
<!-- Buttons -->
<div class="justify-start items-center gap-2.5 flex">
<!-- User -->
<div class="w-[50px] h-[50px] relative">
<img class="w-[50px] h-[50px] left-0 top-0 absolute" src="assets/images/avatars/avatar01.png" />
</div>
<!-- Setting -->
<div class="w-[50px] h-[50px] relative">
<div class="w-[50px] h-[50px] left-0 top-0 absolute rounded-full border border-white/30"></div>
<div
class="w-[31.25px] h-[31.25px] left-[9.38px] top-[9.38px] absolute bg-settings01 bg-full bg-no-repeat">
</div>
</div>
<!-- Bell -->
<div class="w-[50px] h-[50px] relative">
<div class="w-[50px] h-[50px] left-0 top-0 absolute rounded-full border border-white/30"></div>
<div
class="w-[31.25px] h-[31.25px] left-[9.38px] top-[9.38px] absolute bg-bell01 bg-full bg-no-repeat">
</div>
<div
class="w-[17.19px] h-[17.19px] left-[31.25px] top-0 absolute bg-[#70ff4d] rounded-full border-2 border-[#141414]">
</div>
</div>
</div>
</div>
</div>
</nav>
</body>
</html>