-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelivery.html
More file actions
380 lines (318 loc) · 17.2 KB
/
delivery.html
File metadata and controls
380 lines (318 loc) · 17.2 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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Delivery - SM Store</title>
<link rel="stylesheet" href="./assets/css/style.min.css">
</head>
<body>
<div class="wrapper">
<!-- HEADER -->
<header class="header-delivery">
<nav
class="nav__upper nav__upper--default nav__upper--index container-fluid align__content align__content--right mobile-hide tablet-hide">
<ul class="nav__upper-list">
<li class="nav__social"><a href="#"><img src="./assets/images/facebook.svg" alt=""></a></li>
<li class="nav__social"><a href="#"><img src="./assets/images/youtube.svg" alt=""></a></li>
<li class="nav__social"><a href="#"><img src="./assets/images/instagram.svg" alt=""></a></li>
<li class="nav__social"><a href="#"><img src="./assets/images/twitter.svg" alt=""></a></li>
</ul>
</nav>
<nav class="nav__lower nav_lower--default nav__lower--index nav__delivery container-fluid">
<div class="nav__lower-burger">
<img class="burger-menu burger-menu-default" src="./assets/images/burger-menu.svg" alt="">
<img class="burger-menu burger-menu-close" src="./assets/images/close.svg" alt="" hidden>
</div>
<div class="logo-delivery">
<img class="logo-delivery__img" src="./assets/images/logo.svg" alt="SM Store">
</div>
<nav class="link-delivery">
<a class="link-delivery__item" href="#mechanics">Mechanics</a>
<a class="link-delivery__item" href="#">Browse Essentials</a>
<a class="link-delivery__item" href="#faqs">FAQs</a>
</nav>
<nav class="nav-user">
<!-- hide this class to hide the buttons -->
<div class="">
<a class="button-guest button-guest--outline-white font-cta">Login</a>
<a class="button-guest button-guest--pure-white font-cta">Sign up</a>
</div>
<!-- <a class="nav-user nav-user__avatar" href="#"><img class="nav-user__avatar__image"
src="./assets/images/icons/default-user.jpg">Hello, Maan!</a> -->
<div class="nav-user__hello">
<img class="nav-user__avatar" src="./assets/images/icons/default-user.jpg" alt="">
<span>Hello, Maan!</span>
<div class="nav-user__menu">
<a href="#">My Profile and Orders</a>
<a href="#">Logout</a>
</div>
</div>
<a class="nav-user nav-user__basket" href="#"><img class="nav-user__basket__icon"
src="./assets/images/icon-basket.svg">My Basket <span
class="nav-user__basket__count">5</span></a>
</nav>
</nav>
<div class="banner-yolk"></div>
</header>
<!-- /HEADER -->
<!-- MOBILE MENU -->
<nav class="nav__mobile nav__mobile--delivery">
<nav class="nav__mobile__signup-login">
<a class="nav__mobile-signup-login-item" href="#"><img src="./assets/images/icons/Account.svg" alt="">
Signup / Login</a>
</nav>
<ul class="nav__mobile-upper">
<li><a class="nav__mobile-upper-item" href="#mechanics">Mechanics</a></li>
<li><a class="nav__mobile-upper-item" href="#">Browse Essentials</a></li>
<li><a class="nav__mobile-upper-item" href="#faqs">FAQS</a></li>
</ul>
<ul class="nav__mobile-social">
<li><a href="#"><img src="./assets/images/icons/icon-dark-viber.svg" alt="Viber"></a></li>
<li><a href="#"><img src="./assets/images/icons/icon-fb-black.svg" alt="Facebook"></a></li>
<li><a href="#"><img src="./assets/images/icons/icon-youtube-black.svg" alt="Youtube"></a></li>
<li><a href="#"><img src="./assets/images/icons/icon-ig-black.svg" alt="Instagram"></a></li>
<li><a href="#"><img src="./assets/images/icons/icon-twitter-black.svg" alt="Twitter"></a></li>
</ul>
</nav>
<section class="delivery__banner">
<div>
<div class="delivery__banner-text">
<h1 class="font-hero">
<span>Call to</span>
<span>Deliver</span>
</h1>
<p>To serve you better during this time, selected The SM Store branches will offer and deliver
essential items to your home!</p>
<a href="" class="btn--primary button--black font-cta">View our catalog</a>
</div>
<img src="./assets/images/delivery-banner.jpg" alt="">
</div>
</section>
<section class="delivery__steps">
<div>
<div>
<div class="delivery__steps-header">
<h2 class="font-h2-caps text-bold">We got you</h2>
<p class="font-eyebrow-semi">Stay at home and have your essentials delivered from The SM Store
</p>
</div>
<div class="delivery__steps-content">
<div>
<div class="step-header">
<img src="./assets/images/icons/delivery-step1.svg" alt="">
<span class="font-eyebrow">Step 1</span>
</div>
<p>Select an item from our catalog or speak to your branch representative for anything else
you
might need.</p>
</div>
<div>
<div class="step-header">
<img src="./assets/images/icons/delivery-step2.svg" alt="">
<span class="font-eyebrow">Step 2</span>
</div>
<p>Wait for an order confirmation from a branch representative including instructions on
payment
and delivery.</p>
</div>
<div>
<div class="step-header">
<img src="./assets/images/icons/delivery-step3.svg" alt="">
<span class="font-eyebrow">Step 3</span>
</div>
<p>Once paid, wait for your item to be delivered to your doorstep!</p>
</div>
</div>
</div>
</div>
</section>
<section class="delivery__featured">
<div>
<div class="delivery__featured-header">
<h2 class="font-h2-caps delivery__h2">Featured Essentials</h2>
<a href="" class="btn--text-link font-cta">Browse all</a>
</div>
<div class="delivery__featured-slider">
<div class="carousel__item">
<div style="position: relative;">
<img src="./assets/images/delivery-item1.jpg" alt="">
<!-- style: fix the excess space when on bottom: 0 -->
<div class="make-view-product-hover" style="bottom: 5px;">
<a href="" class="btn--text-link font-cta">VIEW PRODUCT</a>
</div>
</div>
<span>Cetaphil</span>
<a class="carousel__item__link">
<h4 class="font-h4">Foaming Cleanser</h4>
</a>
<h4 class="font-h4 text-bold">₱429.00</h4>
</div>
<div class="carousel__item">
<!-- <a><img src="./assets/images/delivery-item2.jpg" alt=""></a> -->
<div style="position: relative;">
<img src="./assets/images/delivery-item2.jpg" alt="">
<!-- style: fix the excess space when on bottom: 0 -->
<div class="make-view-product-hover" style="bottom: 5px;">
<a href="" class="btn--text-link font-cta">VIEW PRODUCT</a>
</div>
</div>
<span>Watsons</span>
<a class="carousel__item__link">
<h4 class="font-h4">Washable Gloves</h4>
</a>
<h4 class="font-h4 text-bold">₱49.75</h4>
</div>
<div class="carousel__item">
<!-- <a><img src="./assets/images/delivery-item3.jpg" alt=""></a> -->
<div style="position: relative;">
<img src="./assets/images/delivery-item3.jpg" alt="">
<!-- style: fix the excess space when on bottom: 0 -->
<div class="make-view-product-hover" style="bottom: 5px;">
<a href="" class="btn--text-link font-cta">VIEW PRODUCT</a>
</div>
</div>
<span>Watsons</span>
<a class="carousel__item__link">
<h4 class="font-h4">Facial Tissues</h4>
</a>
<h4 class="font-h4 text-bold">₱149.00</h4>
</div>
<div class="carousel__item">
<!-- <a><img src="./assets/images/delivery-item4.jpg" alt=""></a> -->
<div style="position: relative;">
<img src="./assets/images/delivery-item4.jpg" alt="">
<!-- style: fix the excess space when on bottom: 0 -->
<div class="make-view-product-hover" style="bottom: 5px;">
<a href="" class="btn--text-link font-cta">VIEW PRODUCT</a>
</div>
</div>
<span>Watsons</span>
<a class="carousel__item__link">
<h4 class="font-h4">Invigorating Wet Wipes</h4>
</a>
<h4 class="font-h4 text-bold">₱79.00</h4>
</div>
<div class="carousel__item">
<!-- <a><img src="./assets/images/delivery-item4.jpg" alt=""></a> -->
<div style="position: relative;">
<img src="./assets/images/delivery-item4.jpg" alt="">
<!-- style: fix the excess space when on bottom: 0 -->
<div class="make-view-product-hover" style="bottom: 5px;">
<a href="" class="btn--text-link font-cta">VIEW PRODUCT</a>
</div>
</div>
<span>Watsons</span>
<a class="carousel__item__link">
<h4 class="font-h4">Invigorating Wet Wipes</h4>
</a>
<h4 class="font-h4 text-bold">₱79.00</h4>
</div>
<div class="carousel__item">
<!-- <a><img src="./assets/images/delivery-item4.jpg" alt=""></a> -->
<div style="position: relative;">
<img src="./assets/images/delivery-item4.jpg" alt="">
<!-- style: fix the excess space when on bottom: 0 -->
<div class="make-view-product-hover" style="bottom: 5px;">
<a href="" class="btn--text-link font-cta">VIEW PRODUCT</a>
</div>
</div>
<span>Watsons</span>
<a class="carousel__item__link">
<h4 class="font-h4">Invigorating Wet Wipes</h4>
</a>
<h4 class="font-h4 text-bold">₱79.00</h4>
</div>
</div>
<div class="delivery__featured-controls">
<button class="delivery__featured-controls--left"></button>
<button class="delivery__featured-controls--right"></button>
</div>
</div>
</section>
<section class="delivery__mechanics">
<div>
<div class="accordion" id="mechanics">
<div class="accordion__header">
<p class="font-headline-bold">Mechanics</p>
<img src="./assets/images/icons/angle-down-black.svg" alt="">
</div>
<div class="accordion__content">
<p>To serve you better during this time, the following The SM Store branches will offer and
deliver selected essential items to your home:</p>
<ul>
<li>Bacolod</li>
<li>Cagayan de Oro (Uptown)</li>
<li>CDO Downtown Premier</li>
<li>Delgado</li>
<li>Iloilo</li>
</ul>
<p>More branches will be offering this service soon — please stay tuned for updates.</p>
<p>Browse through our catalog, submit an order form, and our branch representative will reach
out to you with further instructions on payment and delivery.</p>
</div>
</div>
<div class="accordion" id="faqs">
<div class="accordion__header">
<p class="font-headline-bold">FAQs</p>
<img src="./assets/images/icons/angle-down-black.svg" alt="">
</div>
<div class="accordion__content">
</div>
</div>
<div class="accordion">
<div class="accordion__header">
<p class="font-headline-bold">How to reach us</p>
<img src="./assets/images/icons/angle-down-black.svg" alt="">
</div>
<div class="accordion__content">
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer class="footer__delivery">
<div>
<a class="font-caption">Privacy And Cookie Policy</a>
<a class="font-caption">Terms and Conditions</a>
</div>
<span class="font-caption">© 2020 The SM Store. All rights reserved.</span>
</footer>
<!-- /FOOTER -->
<!-- COOKIE POLICY -->
<div class="cookie__container">
<p class="font-caption cookie__text">The SM Store values your rights to keep your data secure under the Data
Privacy Act. This website uses cookies to help enhance your online experience. Continue to browse if you
agree to our Cookie Policy; otherwise, kindly update your cookie settings. Check out our Privacy Policy
page too for more information on how we protect your privacy.</p>
<div class="cookie__btn">
<button href="#" class="btn--primary btn--primary--white-line font-cta">Got it</button>
<a href="#" class="btn--primary font-cta">Learn more</a>
</div>
</div>
<!-- /COOKIE POLICY -->
<!-- WELCOME MODAL -->
<div class="modal active">
<div class="modal--welcome">
<div class="modal-content">
<img src="./assets/images/welcome-modal.jpg" alt="">
<img src="./assets/images/welcome-modal-m.jpg" alt="">
<h2 class="font-h2-caps">
<span>The SM Store's</span>
<span>Call to deliver</span>
</h2>
<p>To serve you better during this time, we’ll deliver essential items to your home!</p>
<button class="btn--primary button--dark-blue font-cta">Okay, got it!</button>
</div>
</div>
</div>
<!-- END - ITEM MODAL -->
</div> <!-- /wrapper -->
<!-- IMPORTS -->
<script src="./assets/js/jquery.js"></script>
<script src="./assets/js/slick.min.js"></script>
<!-- CUSTOM JS -->
<script src="./assets/js/main.js"></script>
<script src="./assets/js/carousel.js"></script>
</body>
</html>