-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
179 lines (167 loc) · 9.38 KB
/
index.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
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
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdn.tailwindcss.com"></script>
<!-- font linl -->
<link
href="https://fonts.googleapis.com/css2?family=Dancing+Script:[email protected]&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Dancing+Script:[email protected]&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<!-- boptstrap icon link -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
<!-- css file -->
<link rel="stylesheet" href="./styles/output.css" />
<link rel="stylesheet" href="./styles/min.css">
<link rel="icon" href="./assets/images/book-0pen">
<title>Book shelter</title>
</head>
<body>
<!--HADER START -->
<header>
<nav>
<div class="nav--top border-b">
<div class="container-pag flex items-center justify-between py-3">
<img src="./assets/images/logo2.svg" alt="logo" id="logo">
<div class="relative w-[670px] h-[48px] border bg-transparent rounded-[30px]">
<input id="search-input" type="text" placeholder="Search books"
class="w-full h-full px-3 pl-16 outline-none rounded-[30px] bg-transparent">
<i class="bi bi-search absolute top-1 left-5 text-[rgba(0,0,0,0.24)] text-[24px]"></i>
</div>
<div class="flex items-center gap-5">
<button id="darcmod-btn">
<i class="bi bi-moon-stars-fill text-amber-300 text-[22px]"></i>
</button>
<button class="py-[10px] px-[23px] rounded-md bg-blue-700 text-white font-medium"
onclick="logiOut()">Logout</button>
</div>
</div>
</div>
<div class="border-b">
<div class="container-pag py-4 flex justify-end items-center gap-[606px]">
<p id="result-books" class="font-medium">Showing 18 Result(s)</p>
<p class="flex items-center gap-2 py-2 px-4 bg-[#A6B0C3] rounded-md text-white cursor-pointer">
<i class="bi bi-calendar4-week"></i>
<span>Order by newest</span>
</p>
</div>
</div>
</nav>
</header>
<!--HADER END -->
<!--MAIN START -->
<main class=" flex container-pag ">
<!-- ASIDE START -->
<aside id="aside" class="max-w-[300px] absolute md:static min-h-screen border-r">
<div class="p-5">
<h2 class="text-[24px] font-medium">Bookmarks</h2>
<p class="text-[14px] font-medium pr-16">If you don’t like to read, you haven’t found the right book</p>
</div>
<ul class="nav-menu p-3 bookmark-list">
<!-- <li class="w-full p-4 rounded-lg cursor-pointer bg-indigo-50 flex items-center justify-between">
<p class="flex flex-col">
<strong class="text-[16px] font-semibold text-black">Python</strong>
<span
class="text-[13px] font-medium text-[rgba(117,120,129,1)]">David M. Beazley</span>
</p>
<span class="flex items-center gap-2">
<button>
<i class="bi bi-book text-[rgba(117,130,138,1)]"></i>
</button>
<button>
<i class="bi bi-backspace text-red-600"></i>
</button>
</span>
</li> -->
</ul>
</aside>
<!-- ASIDE END -->
<!-- INTRO SECTION START -->
<section id="intro" class="w-full p-5 pt-8">
<div class="w-full p-5 card-wrapper grid grid-cols-3 gap-y-5 gap-x-5 relative">
<span class="loader"></span>
<!-- <div class="card w-[280px] shadow-lg p-2 rounded-md border">
<div class="card-img grid place-content-center p-[5px]">
<img src="./assets/images/card-img.png" alt="icon">
</div>
<div class="card__body p-2">
<h3 class="text-[18px] font-bold mt-[20px]">Python</h3>
<p class="text-[13px] text-gray-500 font-[500]">
David M. Beazley
</p>
<p class="text-[13px] text-gray-500 font-[500]">2009</p>
<div class="mt-[10px] flex items-center justify-between">
<button class="bg-yellow-400 font-bold text-[14px] py-2 px-5 rounded-sm">
Bookmark
</button>
<button class="bg-blue-200 text-blue-500 font-bold text-[14px] py-2 px-12 rounded-sm">
More
</button>
</div>
<button
class="bg-gray-400 text-white w-full mt-2 py-[5px] rounded-sm"
>
Read
</button>
</div>
</div> -->
</div>
</section>
<!-- INTRO SECTION END -->
<div class="toogle-menu hide-toogle-menu w-full absolute top-0 left-0 bg-[rgba(0,0,0,0.7)] flex justify-end">
<div class="w-[30%] bg-white h-[2000px] ">
<div class="flex items-center justify-between bg-[#F8FAFD] py-4 px-6">
<h2 id="toogl-title" class="text-[20px] text-black ">....</h2>
<button id="toogl-menu-btn"
class="border border-transparent duration-200 hover:border-slate-300 px-[4px] cursor-pointer hover:shadow-sm">
<i class="bi bi-x text-[20px] cursor-pointer"></i>
</button>
</div>
<div class="toogl-menu-info mt-[44px] mb-[40px] relative">
<span class="loader"></span>
<!-- <div>
<img src="./assets/images/Rectangle.png" alt="img" class="mx-auto mb-[51px]">
<p class="px-[40px] mb-[50px] text-[#58667E]">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Quasi molestias maiores,
accusantium provident quae repellat expedita a consequuntur quam unde soluta cupiditate!
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Officia provident dolorum
excepturi aut animi magnam pariatur soluta adipisci molestiae? Placeat ut natus sint
consequatur similique, quod dolorem numquam autem! Expedita corporis est fuga hic vitae
incidunt sint dolore quas sit.
</p>
<p class="px-[40px] flex items-center gap-4 mb-4">
<strong class="text-[#222531]">Author :</strong>
<span class="text-[#0D75FF] py-[5px] px-5 bg-[rgba(13,117,255,0.09)] rounded-[30px]">Jamal Kasper</span>
</p>
<p class="px-[40px] flex items-center gap-4 mb-4">
<strong class="text-[#222531]">Published : </strong>
<span class="text-[#0D75FF] py-[5px] px-5 bg-[rgba(13,117,255,0.09)] rounded-[30px]">Jamal Kasper</span>
</p>
<p class="px-[40px] flex items-center gap-4 mb-4">
<strong class="text-[#222531]">Publishers:</strong>
<span class="text-[#0D75FF] py-[5px] px-5 bg-[rgba(13,117,255,0.09)] rounded-[30px]">Jamal Kasper</span>
</p>
<p class="px-[40px] flex items-center gap-4 mb-4">
<strong class="text-[#222531]">Categories:</strong>
<span class="text-[#0D75FF] py-[5px] px-5 bg-[rgba(13,117,255,0.09)] rounded-[30px]">Jamal Kasper</span>
</p>
<p class="px-[40px] flex items-center gap-4 mb-4">
<strong class="text-[#222531]">Pages Count:</strong>
<span class="text-[#0D75FF] py-[5px] px-5 bg-[rgba(13,117,255,0.09)] rounded-[30px]">Jamal Kasper</span>
</p>
<div class="py-4 px-5 flex justify-end mt-[50px]">
<a href="#" class="py-1 px-8 rounded-sm bg-[#75828A] text-white text-center">Read</a>
</div>
</div> -->
</div>
</div>
</div>
</main>
<!--MAIN END -->
</body>
<script src="./assets/js/utilis.js"></script>
<script src="./assets/js/main.js"></script>
</html>