-
Notifications
You must be signed in to change notification settings - Fork 6
/
catalog.html
576 lines (573 loc) · 29.1 KB
/
catalog.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
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>HTML Academy: Глейси Каталог</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700&subset=cyrillic" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/style.min.css">
</head>
<body class="nojs">
<div class="page-wrapper">
<div class="content-wrapper">
<header class="page-header">
<div class="page-header__logo">
<a href="index.html">
<img src="img/logo.svg" width="154" height="64" alt="GllacyShop">
</a>
</div>
<nav class="main-nav">
<ul class="main-nav__items">
<li class="main-nav__item main-nav__item--active">
<a class="main-nav__link">
Каталог
</a>
<div class="main-nav__popup-wrap">
<ul class="main-nav__popup">
<li class="main-nav__popup-item">
<a class="main-nav__popup-link main-nav__popup-link--title">Новинки</a>
</li>
<li class="main-nav__popup-item">
<a class="main-nav__popup-link main-nav__popup-link--active">Сливочное</a>
</li>
<li class="main-nav__popup-item">
<a href="#" class="main-nav__popup-link">Щербеты</a>
</li>
<li class="main-nav__popup-item">
<a href="#" class="main-nav__popup-link">Фруктовый лёд</a>
</li>
<li class="main-nav__popup-item">
<a href="#" class="main-nav__popup-link">Мелорин</a>
</li>
</ul>
</div>
</li>
<li class="main-nav__item">
<a href="#" class="main-nav__link">
Доставка и оплата
</a>
</li>
<li class="main-nav__item">
<a href="#" class="main-nav__link">
О Компании
</a>
</li>
</ul>
</nav>
<div class="page-header__btn page-header__btn--search">
Поиск
<div class="page-header__popup-wrap page-header__popup-wrap--extra-space">
<form class="page-header__search-form" id="search-form" action="/" method="get">
<input type="text" name="search-query" placeholder="Что ищем?">
</form>
</div>
</div>
<div class="page-header__user">
<div class="page-header__btn page-header__btn--login">
Вход
<div class="page-header__popup-wrap">
<form class="login-form" id="login-form" action="/" method="post">
<input type="email" name="email" placeholder="Электронная почта">
<input type="password" name="password" placeholder="Пароль">
<input class="btn" type="submit" value="Войти">
<div class="login-form__links">
<a class="login-form__link" href="#">
<span class="login-form__link-content">Забыли пароль?</span>
</a>
<a class="login-form__link" href="#">
<span class="login-form__link-content">Новая регистрация</span>
</a>
</div>
</form>
</div>
</div>
<div class="page-header__btn page-header__btn--basket-full">
2 товара
<div class="page-header__popup-wrap">
<table class="basket-table">
<caption class="visually-hidden">Товары в корзине:</caption>
<tbody>
<tr class="basket-table__item">
<td class="basket-table__col basket-table__col--control">
<button class="basket-table__btn basket-table__btn--remove">Удалить</button>
</td>
<td class="basket-table__col basket-table__col--preview">
<img src="img/ice-cream-icon-1.gif" width="33" height="33" alt="Пломбир с апельсиновым джемом">
</td>
<td class="basket-table__col basket-table__col--label">
Пломбир с апельсиновым джемом
</td>
<td class="basket-table__col basket-table__col--price">
<span class="basket-table__amount">1,5 кг</span> x
<span class="basket-table__price">200 руб.</span>
</td>
<td class="basket-table__col basket-table__col--sum">
300 руб.
</td>
</tr>
<tr class="basket-table__item">
<td class="basket-table__col basket-table__col--control">
<button class="basket-table__btn basket-table__btn--remove">Удалить</button>
</td>
<td class="basket-table__col basket-table__col--preview">
<img src="img/ice-cream-icon-2.gif" width="33" height="33" alt="Клубничный пломбир с присыпкой из белого шоколада">
</td>
<td class="basket-table__col basket-table__col--label">
Клубничный пломбир с присыпкой из белого шоколада
</td>
<td class="basket-table__col basket-table__col--price">
<span class="basket-table__amount">1,5 кг</span> x
<span class="basket-table__price">300 руб.</span>
</td>
<td class="basket-table__col basket-table__col--sum">
450 руб.
</td>
</tr>
</tbody>
<tfoot>
<tr class="basket-table__item basket-table__item--total">
<td colspan="5">
<div class="basket-table__total">Итого: 750 руб.</div>
<a class="btn btn--tiny" href="/">Оформить заказ</a>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
<div class="page-header__contacts">
<div class="page-header__contacts-days">С 10 до 20, ежедневно </div>
<div class="page-header__contacts-tel">8 812 450-25-25</div>
</div>
</header>
<main class="page-content">
<div class="breadcrumbs">
<ul class="breadcrumbs__items">
<li class="breadcrumbs__item">
<a class="breadcrumbs__link" href="index.html">
<span class="breadcrumbs__link-content">Главная</span>
</a>
</li>
<li class="breadcrumbs__item">
<a class="breadcrumbs__link" href="#">
<span class="breadcrumbs__link-content">Каталог</span>
</a>
</li>
<li class="breadcrumbs__item">
<a class="breadcrumbs__link breadcrumbs__link--active">
<span class="breadcrumbs__link-content">Сливочное</span>
</a>
</li>
</ul>
</div>
<section class="catalog">
<h2 class="catalog__header">Сливочное мороженое</h2>
<section class="catalog__filter">
<h3 class="visually-hidden">Отфильтровать список:</h3>
<form class="filter-form" id="filter-form" action="/" method="get">
<fieldset class="filter-form__item">
<legend class="filter-form__title">Сортировка:</legend>
<select class="filter-form__sort" name="sort">
<option value="pop">по популярности</option>
<option value="expensive">сначала недорогие</option>
<option value="cheap">сначала дорогие</option>
<option value="fatcontent">по жирности</option>
</select>
<span class="filter-form__sort-icon"></span>
</fieldset>
<fieldset class="filter-form__item">
<legend class="filter-form__title">
Цена:
<span class="filter-form__price-label">
<output class="catalog__lower-cost" name="lower-cost">100 руб.</output> –
<output class="catalog__upper-cost" name="upper-cost">500 руб.</output>
</span>
</legend>
<div class="filter-form__price-range">
От
<input type="text" name="min-price" value="100" pattern="[0-9]*"> до
<input type="text" name="max-price" value="500" pattern="[0-9]*">
<div class="filter-form__price-control">
<div class="filter-form__range-scale">
<div class="filter-form__range-bar"></div>
</div>
<div class="filter-form__range-toggle filter-form__range-toggle--min"></div>
<div class="filter-form__range-toggle filter-form__range-toggle--max"></div>
</div>
</div>
</fieldset>
<fieldset class="filter-form__item">
<legend class="filter-form__title">Жирность:</legend>
<ul class="filter-form__fatcontent">
<li class="filter-form__fatcontent-item">
<label class="filter-form__radio-control">
<input type="radio" name="fatcontent" value="0">
<span class="filter-form__radio-icon"></span>
<span class="filter-form__radio-label">0%</span>
</label>
</li>
<li class="filter-form__fatcontent-item">
<label class="filter-form__radio-control">
<input type="radio" name="fatcontent" value="b10" checked disabled>
<span class="filter-form__radio-icon"></span>
<span class="filter-form__radio-label">до 10%</span>
</label>
</li>
<li class="filter-form__fatcontent-item">
<label class="filter-form__radio-control">
<input type="radio" name="fatcontent" value="b30" disabled>
<span class="filter-form__radio-icon"></span>
<span class="filter-form__radio-label">до 30%</span>
</label>
</li>
<li class="filter-form__fatcontent-item">
<label class="filter-form__radio-control">
<input type="radio" name="fatcontent" value="a30">
<span class="filter-form__radio-icon"></span>
<span class="filter-form__radio-label">выше 30%</span>
</label>
</li>
</ul>
</fieldset>
<fieldset class="filter-form__item">
<legend class="filter-form__title">Наполнители:</legend>
<ul class="filter-form__fillers">
<li class="filter-form__fillers-item">
<label class="filter-form__checkbox-control">
<input type="checkbox" name="filler-chocolate" checked>
<span class="filter-form__checkbox-icon"></span>
<span class="filter-form__checkbox-label">шоколадные</span>
</label>
</li>
<li class="filter-form__fillers-item">
<label class="filter-form__checkbox-control">
<input type="checkbox" name="filler-sugar" checked disabled>
<span class="filter-form__checkbox-icon"></span>
<span class="filter-form__checkbox-label">сахарные присыпки</span>
</label>
</li>
<li class="filter-form__fillers-item">
<label class="filter-form__checkbox-control">
<input type="checkbox" name="filler-fruit" disabled>
<span class="filter-form__checkbox-icon"></span>
<span class="filter-form__checkbox-label">фрукты</span>
</label>
</li>
<li class="filter-form__fillers-item">
<label class="filter-form__checkbox-control">
<input type="checkbox" name="filler-syrup">
<span class="filter-form__checkbox-icon"></span>
<span class="filter-form__checkbox-label">сиропы</span>
</label>
</li>
<li class="filter-form__fillers-item">
<label class="filter-form__checkbox-control">
<input type="checkbox" name="filler-jam">
<span class="filter-form__checkbox-icon"></span>
<span class="filter-form__checkbox-label">джемы</span>
</label>
</li>
</ul>
</fieldset>
<input class="filter-form__btn" type="submit" value="Применить">
</form>
</section>
<section class="catalog__list">
<h3 class="visually-hidden">Найденные позиции:</h3>
<div class="catalog__list-items">
<div class="product-item">
<div class="product-item__preview">
<div class="product-item__img-wrap">
<img class="product-item__img" src="img/ice-cream-1.jpg" width="267" height="267" alt="Мороженое">
</div>
<div class="product-item__price">
<span class="product-item__cost">310₽</span>
<span class="product-item__amount">/кг</span>
</div>
</div>
<div class="product-item__desc">
<a href="#" class="product-item__link">
<span class="product-item__link-content">Сливочное с апельсиновым джемом и цитрусовой стружкой</span>
</a>
</div>
<div class="product-item__hover-wrap">
<a class="btn product-item__btn" href="#">Быстрый просмотр</a>
</div>
</div>
<div class="product-item">
<div class="product-item__preview">
<div class="product-item__img-wrap">
<img class="product-item__img" src="img/ice-cream-2.jpg" width="267" height="267" alt="Мороженое">
</div>
<div class="product-item__price">
<span class="product-item__cost">380₽</span>
<span class="product-item__amount">/кг</span>
</div>
</div>
<div class="product-item__desc">
<a href="#" class="product-item__link">
<span class="product-item__link-content">Сливочно-кофейное с кусочками шоколада</span>
</a>
</div>
<div class="product-item__hover-wrap">
<a class="btn product-item__btn" href="#">Быстрый просмотр</a>
</div>
</div>
<div class="product-item">
<div class="product-item__preview">
<div class="product-item__img-wrap">
<img class="product-item__img" src="img/ice-cream-3.jpg" width="267" height="267" alt="Мороженое">
</div>
<div class="product-item__price">
<span class="product-item__cost">355₽</span>
<span class="product-item__amount">/кг</span>
</div>
</div>
<div class="product-item__desc">
<a href="#" class="product-item__link">
<span class="product-item__link-content">Сливочно-клубничное с присыпкой из белого шоколада</span>
</a>
</div>
<div class="product-item__hover-wrap">
<a class="btn product-item__btn" href="#">Быстрый просмотр</a>
</div>
</div>
<div class="product-item">
<div class="product-item__preview">
<div class="product-item__img-wrap">
<img class="product-item__img" src="img/ice-cream-4.jpg" width="267" height="267" alt="Мороженое">
</div>
<div class="product-item__price">
<span class="product-item__cost">415₽</span>
<span class="product-item__amount">/кг</span>
</div>
</div>
<div class="product-item__desc">
<a href="#" class="product-item__link">
<span class="product-item__link-content">Сливочное крем-брюле с карамельной подливкой</span>
</a>
</div>
<div class="product-item__hover-wrap">
<a class="btn product-item__btn" href="#">Быстрый просмотр</a>
</div>
</div>
<div class="product-item">
<div class="product-item__preview">
<div class="product-item__img-wrap">
<img class="product-item__img" src="img/ice-cream-5.jpg" width="267" height="267" alt="Мороженое">
</div>
<div class="product-item__price">
<span class="product-item__cost">325₽</span>
<span class="product-item__amount">/кг</span>
</div>
</div>
<div class="product-item__desc">
<a href="#" class="product-item__link">
<span class="product-item__link-content">Сливочное с брусничным джемом</span>
</a>
</div>
<div class="product-item__hover-wrap">
<a class="btn product-item__btn" href="#">Быстрый просмотр</a>
</div>
</div>
<div class="product-item">
<div class="product-item__preview">
<div class="product-item__img-wrap">
<img class="product-item__img" src="img/ice-cream-6.jpg" width="267" height="267" alt="Мороженое">
</div>
<div class="product-item__price">
<span class="product-item__cost">410₽</span>
<span class="product-item__amount">/кг</span>
</div>
</div>
<div class="product-item__desc">
<a href="#" class="product-item__link">
<span class="product-item__link-content">Сливочно-черничное с цельными ягодами черники</span>
</a>
</div>
<div class="product-item__hover-wrap">
<a class="btn product-item__btn" href="#">Быстрый просмотр</a>
</div>
</div>
<div class="product-item">
<div class="product-item__preview">
<div class="product-item__img-wrap">
<img class="product-item__img" src="img/ice-cream-7.jpg" width="267" height="267" alt="Мороженое">
</div>
<div class="product-item__price">
<span class="product-item__cost">375₽</span>
<span class="product-item__amount">/кг</span>
</div>
</div>
<div class="product-item__desc">
<a href="#" class="product-item__link">
<span class="product-item__link-content">Сливочно-лимонное с карамельной присыпкой</span>
</a>
</div>
<div class="product-item__hover-wrap">
<a class="btn product-item__btn" href="#">Быстрый просмотр</a>
</div>
</div>
<div class="product-item">
<div class="product-item__preview">
<div class="product-item__img-wrap">
<img class="product-item__img" src="img/ice-cream-8.jpg" width="267" height="267" alt="Мороженое">
</div>
<div class="product-item__price">
<span class="product-item__cost">320₽</span>
<span class="product-item__amount">/кг</span>
</div>
</div>
<div class="product-item__desc">
<a href="#" class="product-item__link">
<span class="product-item__link-content">Сливочное с шоколадной стружкой</span>
</a>
</div>
<div class="product-item__hover-wrap">
<a class="btn product-item__btn" href="#">Быстрый просмотр</a>
</div>
</div>
<div class="product-item">
<div class="product-item__preview">
<div class="product-item__img-wrap">
<img class="product-item__img" src="img/ice-cream-9.jpg" width="267" height="267" alt="Мороженое">
</div>
<div class="product-item__price">
<span class="product-item__cost">440₽</span>
<span class="product-item__amount">/кг</span>
</div>
</div>
<div class="product-item__desc">
<a href="#" class="product-item__link">
<span class="product-item__link-content">Сливочно-ванильное с кусочками шоколада</span>
</a>
</div>
<div class="product-item__hover-wrap">
<a class="btn product-item__btn" href="#">Быстрый просмотр</a>
</div>
</div>
<div class="product-item">
<div class="product-item__preview">
<div class="product-item__img-wrap">
<img class="product-item__img" src="img/ice-cream-10.jpg" width="267" height="267" alt="Мороженое">
</div>
<div class="product-item__price">
<span class="product-item__cost">435₽</span>
<span class="product-item__amount">/кг</span>
</div>
</div>
<div class="product-item__desc">
<a href="#" class="product-item__link">
<span class="product-item__link-content">Сливочноe с ментоловым сиропом</span>
</a>
</div>
<div class="product-item__hover-wrap">
<a class="btn product-item__btn" href="#">Быстрый просмотр</a>
</div>
</div>
<div class="product-item">
<div class="product-item__preview">
<div class="product-item__img-wrap">
<img class="product-item__img" src="img/ice-cream-11.jpg" width="267" height="267" alt="Мороженое">
</div>
<div class="product-item__price">
<span class="product-item__cost">355₽</span>
<span class="product-item__amount">/кг</span>
</div>
</div>
<div class="product-item__desc">
<a href="#" class="product-item__link">
<span class="product-item__link-content">Сливочное с кусочками черного шоколада</span>
</a>
</div>
<div class="product-item__hover-wrap">
<a class="btn product-item__btn" href="#">Быстрый просмотр</a>
</div>
</div>
<div class="product-item">
<div class="product-item__preview">
<div class="product-item__img-wrap">
<img class="product-item__img" src="img/ice-cream-12.jpg" width="267" height="267" alt="Мороженое">
</div>
<div class="product-item__price">
<span class="product-item__cost">420₽</span>
<span class="product-item__amount">/кг</span>
</div>
</div>
<div class="product-item__desc">
<a href="#" class="product-item__link">
<span class="product-item__link-content">Сливочное с мятным сиропом</span>
</a>
</div>
<div class="product-item__hover-wrap">
<a class="btn product-item__btn" href="#">Быстрый просмотр</a>
</div>
</div>
</div>
</section>
<div class="paginator">
<a class="paginator__arrow paginator__arrow--prev paginator__arrow--inactive" href=""><</a>
<a class="paginator__page-link paginator__page-link--active">1</a>
<a class="paginator__page-link" href="#2">2</a>
<a class="paginator__page-link" href="#3">3</a>
<a class="paginator__page-link" href="#4">4</a>
<a class="paginator__page-link" href="#5">5</a>
<a class="paginator__arrow paginator__arrow--next" href="">></a>
</div>
</section>
</main>
<footer class="page-footer">
<section class="social-links">
<h2 class="visually-hidden">Мы в социальных сетях:</h2>
<div class="social-links__items">
<a class="social-links__item social-links__item--tw" target="blank" href="http://twitter.com">Твиттер</a>
<a class="social-links__item social-links__item--inst" target="blank" href="https://www.instagram.com">Инстаграм</a>
<a class="social-links__item social-links__item--fb" target="blank" href="http://facebook.com">Фейсбук</a>
<a class="social-links__item social-links__item--vk" target="blank" href="http://vk.com">Вконтакте</a>
</div>
</section>
<div class="page-footer__nav">
<div class="page-footer__nav-col">
<ul class="page-footer__nav-items">
<li class="page-footer__nav-item page-footer__nav-item--like">
<a class="page-footer__link" href="#">
<span class="page-footer__link-content">Для поставщиков</span>
</a>
</li>
<li class="page-footer__nav-item">
<a class="page-footer__link" href="#">
<span class="page-footer__link-content">О производстве</span>
</a>
</li>
</ul>
</div>
<div class="page-footer__nav-col">
<ul class="page-footer__nav-items">
<li class="page-footer__nav-item">
<a class="page-footer__link" href="#">
<span class="page-footer__link-content">Наши документы</span>
</a>
</li>
<li class="page-footer__nav-item">
<a class="page-footer__link" href="#">
<span class="page-footer__link-content">Экологические стандарты</span>
</a>
</li>
</ul>
</div>
</div>
<div class="page-footer__copyright">
<img class="page-footer__copyright-logo" src="img/htmacademy-logo.png" width="108" height="38" alt="HTML Academy">
<div class="page-footer__copyright-label">
Сделано в
<a class="page-footer__link" href="https://htmlacademy.ru">
<span class="page-footer__link-content">HTML Academy</span>
</a> © 2016
</div>
</div>
</footer>
</div>
</div>
<script src="js/script.js"></script>
</body>
</html>