-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpayment.html
350 lines (335 loc) · 19.9 KB
/
payment.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="asset/css/tailwindcss/tailwind.css">
<link rel="stylesheet" href="asset/css/style.css">
<link rel="stylesheet" href="asset/font/fontawesome-free-v5-web/css/all.css">
</head>
<body class="flex flex-col justify-center items-center bg-gray-400">
<Header class="content relative">
<div class=" menu flex justify-around items-center">
<div class="flex flex-row justify-start items-center cursor-pointer">
<img class="pb-2" src="asset/img/about-us/logo.png">
<p class="text-myGreen uppercase font-bolderr font-black text-3xl pl-2">Территория вкуса</p>
</div>
<nav class="navigation-bar flex justify-end">
<ul class="flex justify-center items-center">
<li class="text-myGreen mr-10">
<a href="#">Пицца</a>
</li>
<li class="text-myGray mr-10">
<a href="#">Роллы</a>
</li>
<li class="text-myGray mr-10">
<a href="#">Бизнес-ланчи</a>
</li>
<li class="text-myGray mr-10">
<a href="#">Закуски</a>
</li>
<li class="text-myGray mr-10">
<a href="#">Десерты</a>
</li>
<li class="text-myGray">
<a href="#">Напитки</a>
</li>
</ul>
</nav>
</div>
<div class="icon-second-page flex flex-col items-center justify-center">
<div class="icon-item flex justify-center items-center text-myGreen">
<a href="#">
<i class="fas fa-user"></i>
</a>
</div>
<div class="icon-item flex justify-center items-center text-myGreen">
<a href="#">
<i class="fas fa-shopping-cart"></i>
</a>
</div>
<div class="icon-item flex justify-center items-center text-myGreen">
<a href="#">
<i class="far fa-heart"></i>
</a>
</div>
</div>
</Header>
<section class="content bg-black flex justify-center pb-10">
<div class="width-1222">
<p class="text-2xl py-10">Ваша корзина</p>
<div class="flex justify-between">
<div class="width-800">
<div class="flex justify-between items-center m-0 p-0">
<div class="flex justify-center items-center gap-x-3">
<div class="width-174 height-100 m-0 p-0">
<img class="w-full h-full bg-center bg-cover" src="asset/img/food-order-1.png">
</div>
<p class="text-myWhite text-xl">Стейк из семги</p>
</div>
<div class="text-myWhite flex flex-row justify-end items-center gap-x-2 pr-10">
<a href="#">
<i class="text-xl mr-2 hover-text-mygreen fas fa-minus"></i>
</a>
<div class="w-6 h-6 mr-2 border-2 flex justify-center items-center text-xs">2</div>
<a href="#">
<i class="text-xl hover-text-mygreen fas fa-plus"></i>
</a>
<p class="text-xl pl-10">740₽</p>
<a href="#">
<i class="ml-10 text-xl hover:text-red-600 far fa-trash-alt"></i>
</a>
</div>
</div>
<div class="flex justify-between items-center m-0 p-0 mt-6">
<div class="flex justify-center items-center gap-x-3">
<div class="width-174 height-100 m-0 p-0">
<img class="w-full h-full bg-center bg-cover" src="asset/img/food-order-2.png">
</div>
<p class="text-myWhite text-xl">Стейк из семги</p>
</div>
<div class="text-myWhite flex flex-row justify-end items-center gap-x-2 pr-10">
<a href="#">
<i class="text-xl mr-2 hover-text-mygreen fas fa-minus"></i>
</a>
<div class="w-6 h-6 mr-2 border-2 flex justify-center items-center text-xs">2</div>
<a href="#">
<i class="text-xl hover-text-mygreen fas fa-plus"></i>
</a>
<p class="text-xl pl-10">740₽</p>
<a href="#">
<i class="ml-10 text-xl hover:text-red-600 far fa-trash-alt"></i>
</a>
</div>
</div>
<div class="flex justify-between items-center m-0 p-0 mt-6">
<div class="flex justify-center items-center gap-x-3">
<div class="width-174 height-100 m-0 p-0">
<img class="w-full h-full bg-center bg-cover" src="asset/img/food-order-3.png">
</div>
<p class="text-myWhite text-xl">Стейк из семги</p>
</div>
<div class="text-myWhite flex flex-row justify-end items-center gap-x-2 pr-10">
<a href="#">
<i class="text-xl mr-2 hover-text-mygreen fas fa-minus"></i>
</a>
<div class="w-6 h-6 mr-2 border-2 flex justify-center items-center text-xs">2</div>
<a href="#">
<i class="text-xl hover-text-mygreen fas fa-plus"></i>
</a>
<p class="text-xl pl-10">740₽</p>
<a href="#">
<i class="ml-10 text-xl hover:text-red-600 far fa-trash-alt"></i>
</a>
</div>
</div>
<div class="flex justify-between items-center m-0 p-0 mt-6">
<div class="flex justify-center items-center gap-x-3">
<div class="width-174 height-100 m-0 p-0">
<img class="w-full h-full bg-center bg-cover" src="asset/img/food-order-4.png">
</div>
<p class="text-myWhite text-xl">Стейк из семги</p>
</div>
<div class="text-myWhite flex flex-row justify-end items-center gap-x-2 pr-10">
<a href="#">
<i class="text-xl mr-2 hover-text-mygreen fas fa-minus"></i>
</a>
<div class="w-6 h-6 mr-2 border-2 flex justify-center items-center text-xs">2</div>
<a href="#">
<i class="text-xl hover-text-mygreen fas fa-plus"></i>
</a>
<p class="text-xl pl-10">740₽</p>
<a href="#">
<i class="ml-10 text-xl hover:text-red-600 far fa-trash-alt"></i>
</a>
</div>
</div>
</div>
<div class="width-422 border-left relative pl-10">
<p class="text-myWhite text-xl">Промокод</p>
<div class="flex flex-row justify-end items-center width-321 height-35 border border-myGreen rounded-full relative mt-3 mb-10">
<input class="text-myWhite text-xs uppercase py-4 pl-4 pr-28 width-321 height-35 border border-myGreen rounded-full bg-transparent outline-none absolute" type="text" placeholder="Введите промокод">
<!-- <p class="text-myWhite text-xs uppercase p-4">Введите промокод</p> -->
<a class="flex flex-row justify-center items-center width-97 height-35 text-black text-sm font-light border border-myGreen rounded-full bg-mygreen transition duration-500 hover:text-white hover:bg-transparent z-10" href="#">
применить
</a>
</div>
<p class="text-myWhite text-xl">Бонусные рубли (доступно 258)</p>
<div class="flex flex-row justify-end items-center width-321 height-35 border border-myGreen rounded-full relative mt-3 mb-10">
<input class="text-myWhite text-xs uppercase py-4 pl-4 pr-28 width-321 height-35 border border-myGreen rounded-full bg-transparent outline-none absolute" type="text" placeholder="258">
<!-- <p class="text-myWhite text-xs uppercase p-4">Введите промокод</p> -->
<a class="flex flex-row justify-center items-center width-97 height-35 text-black text-sm font-light border border-myGreen rounded-full bg-mygreen transition duration-500 hover:text-white hover:bg-transparent z-10" href="#">
применить
</a>
</div>
<p class="text-myWhite text-xl">Доставка</p>
<div class="flex flex-col justify-center mt-3">
<div class="checkk flex items-center gap-x-4 pl-3 pt-1">
<span></span>
<p class="text-myWhite" >Самовывоз</p>
</div>
<div class="checkk flex items-center gap-x-4 pl-3 pt-1">
<span></span>
<p class="text-myWhite">Дом (ул. М. Горького, 237) </p>
</div>
<div class="checkk flex items-center gap-x-4 pl-3 pt-1">
<span class="bg-myGreen"></span>
<p class="text-myWhite">Офис (ул. Социалистическая, 16) </p>
</div>
<div class="checkk flex items-center gap-x-4 pl-3 pt-1">
<span></span>
<p class="text-myWhite">Другой адрес</p>
</div>
</div>
<div class="flex flex-col justify-center items-end mt-3">
<p class="text-myWhite text-xl py-1">
Итого:
<span class="font-black">1380₽</span>
</p>
<p class="text-myWhite text-xl py-1">
Промокод:
<spa class="font-black"n>-20%</span>
</p>
<p class="text-myWhite text-xl py-1">
Бонусы:
<span class="font-black">-258₽</span>
</p>
<p class="text-myWhite text-xl pt-1 pb-3">
Доставка:
<spa class="font-black"n>100₽</span>
</p>
<p class="text-myWhite text-xl relative top-br pt-2">
Всего к оплате:
<span>946₽</span>
</p>
<a class="flex flex-row justify-center items-center width-158 height-32 text-black text-sm font-light border border-myGreen rounded-full bg-mygreen transition duration-500 hover:text-white hover:bg-transparent mt-7" href="#">
списать
</a>
</div>
</div>
</div>
<p class="text-myWhite text-2xl py-10">Соусы к бортикам и закускам</p>
<div class="flex justify-between">
<div class="flex flex-col width-255 height-272 bg-myGray rounded">
<img class="width-255 height-178 bg-cover bg-center" src="asset/img/tomato-juice-black.png">
<p class="text-myWhite text-sm pl-5 pt-2 pb-2">Соус Терияки</p>
<p class="text-myGreen text-xl font-medium pl-5 py-3">35₽</p>
</div>
<div class="flex flex-col width-255 height-272 bg-myGray rounded">
<img class="width-255 height-178 bg-cover bg-center" src="asset/img/tomato-juice-red.png">
<p class="text-myWhite text-sm pl-5 pt-2 pb-2">Соус Барбекю</p>
<p class="text-myGreen text-xl font-medium pl-5 py-3">35₽</p>
</div>
<div class="flex flex-col width-255 height-272 bg-myGray rounded">
<img class="width-255 height-178 bg-cover bg-center" src="asset/img/tomato-juice-yellow.png">
<p class="text-myWhite text-sm pl-5 pt-2 pb-2">Соус Сырный</p>
<p class="text-myGreen text-xl font-medium pl-5 py-3">35₽</p>
</div>
<div class="flex flex-col width-255 height-272 bg-myGray rounded">
<img class="width-255 height-178 bg-cover bg-center" src="asset/img/tomato-juice-white.png">
<p class="text-myWhite text-sm pl-5 pt-2 pb-2">Соус Тартар</p>
<p class="text-myGreen text-xl font-medium pl-5 py-3">35₽</p>
</div>
</div>
</div>
</section>
<section class="content height-543 bg-black">
<div class="pt-14 padding-left-126 py-10">
<h2 class="text-2xl font-medium text-myWhite">Рекомендуем к вашему заказу </h2>
</div>
<div class="flex flex-row justify-center items-center">
<div class="galleryHero grid grid-cols-3 column-gap justify-items-center items-center">
<div class="gallerythirdpage flex flex-col justify-start items-start bg-myGray rounded">
<div class="width-350 height-220">
<img src="asset/img/gallery-1.png">
</div>
<div class="width-350 height-143 p-5">
<h3 class="text-white pb-3 font-bold">Шоколадный десерт с овсянкой</h3>
<div class="flex flex-row justify-between items-center">
<p class="text-2xl text-myGreen py-5 font-black">165₽</p>
<div class="width-100 height-32 flex justify-center items-center btn text-sm">
<a class="block py-2 px-3 font-Regularr uppercase text-xs" href="#">в корзину</a>
</div>
</div>
</div>
</div>
<div class="gallerythirdpage flex flex-col justify-start items-start bg-myGray rounded">
<div class="width-350 height-220">
<img src="asset/img/gallery-2.png">
</div>
<div class="width-350 height-143 p-5">
<h3 class="text-white pb-3 font-bold">Блинчики в малиной</h3>
<div class="flex flex-row justify-between items-center">
<p class="text-2xl text-myGreen py-5 font-black">125₽</p>
<div class="width-100 height-32 flex justify-center items-center btn text-sm">
<a class="block py-2 px-3 font-Regularr uppercase text-xs" href="#">в корзину</a>
</div>
</div>
</div>
</div>
<div class="gallerythirdpage flex flex-col justify-start items-start bg-myGray rounded">
<div class="width-350 height-220">
<img src="asset/img/gallery-3.png">
</div>
<div class="width-350 height-143 p-5">
<h3 class="text-white pb-3 font-bold">Ягодный пломбир</h3>
<div class="flex flex-row justify-between items-center">
<p class="text-2xl text-myGreen py-5 font-black">95₽</p>
<div class="width-100 height-32 flex justify-center items-center btn text-sm">
<a class="block py-2 px-3 font-Regularr uppercase text-xs" href="#">в корзину</a>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="content footer">
<div class="bg-myGray height-200 flex flex-col">
<div class="border-bottom-1 pb-3">
<div class="flex flex-row justify-center items-center pt-7 pb-3">
<img class="pb-3 cursor-pointer" src="asset/img/about-us/logo.png">
<p class="text-myGreen text-3xl uppercase font-Regularr font-bold pl-2 cursor-pointer">Территория вкуса</p>
</div>
<nav class="navigation-bar flex justify-center">
<ul class="flex justify-center items-center">
<li class="text-myGreen mr-10">
<a href="#">О нас</a>
</li>
<li class="text-myGray mr-10">
<a href="#">Меню</a>
</li>
<li class="text-myGray mr-10">
<a href="#">Доставка</a>
</li>
<li class="text-myGray mr-10">
<a href="#">Оплата</a>
</li>
<li class="text-myGray mr-10">
<a href="#">Франшиза</a>
</li>
<li class="text-myGray">
<a href="#">Вакансии</a>
</li>
</ul>
</nav>
</div>
<div class="flex flex-row justify-center items-center pt-6">
<a href="#">
<i class="text-myGray text-3xl pr-7 hover-text-mygreen fab fa-instagram"></i>
</a>
<a href="#">
<i class="text-myGray text-3xl pr-7 hover-text-mygreen fab fa-facebook-f"></i>
</a>
<a href="#">
<i class="text-myGray text-3xl pr-7 hover-text-mygreen fab fa-twitter"></i>
</a>
<a href="#">
<i class="text-myGray text-3xl hover-text-mygreen fab fa-whatsapp"></i>
</a>
</div>
</div>
</footer>
</body>
</html>