From 117f52f96db2b5c9a9fe4167753e8a80e8eedebe Mon Sep 17 00:00:00 2001 From: OlegSulitskii Date: Mon, 7 Oct 2024 19:50:50 +0400 Subject: [PATCH 01/13] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D1=8F=D0=B5=D1=82=20=D0=BD=D0=B0=D1=81=D1=82=D0=B0=D0=B2=D0=BD?= =?UTF-8?q?=D0=B8=D0=BA=D0=B0=20(#1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Добавляет наставника * Добавляет ссылку для наставника --- Readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 05eac74..480bd34 100644 --- a/Readme.md +++ b/Readme.md @@ -1,7 +1,7 @@ # Личный проект «Кэт энерджи» * Студент: [Олег Сулицкий](https://up.htmlacademy.ru/adaptive-individual/2/user/2549447). -* Наставник: `Неизвестно`. +* Наставник: [Анна Лисененкова](https://htmlacademy.ru/profile/ankhena). --- From 7096595eadd7031dd71f1463db2d5f256e5492f8 Mon Sep 17 00:00:00 2001 From: OlegSulitskii Date: Sun, 27 Oct 2024 20:19:24 +0400 Subject: [PATCH 02/13] =?UTF-8?q?=D0=A2=D0=B5=D1=81=D1=82=D0=B8=D1=80?= =?UTF-8?q?=D1=83=D0=B5=D1=82=20=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D1=83=20(#5?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/index.html | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/source/index.html b/source/index.html index 1eddeaf..6d2c813 100644 --- a/source/index.html +++ b/source/index.html @@ -1,13 +1,17 @@ - - - Название проекта - - - - - -
Шапка
- + + + + Название проекта + + + + + + +
Шапка
+

Привет, мир!

+ + From b44703d2dbc73278cfdb29f7f445acf896560197 Mon Sep 17 00:00:00 2001 From: OlegSulitskii Date: Mon, 11 Nov 2024 11:23:13 +0300 Subject: [PATCH 03/13] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D1=8F=D0=B5=D1=82=20=D1=80=D0=B0=D0=B7=D0=BC=D0=B5=D1=82=D0=BA?= =?UTF-8?q?=D1=83=20=D0=B2=D1=81=D0=B5=D1=85=20=D1=81=D1=82=D1=80=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D1=86=20(#6)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Создает разметку всех страниц * Исправляет разметку всех страниц --- source/catalog.html | 312 +++++++++++++++++++++++++++++++ source/images/logo-2.svg | 18 ++ source/images/logo-mobile.svg | 19 ++ source/index.html | 119 +++++++++++- source/styles/blocks/header.scss | 2 +- 5 files changed, 466 insertions(+), 4 deletions(-) create mode 100644 source/catalog.html create mode 100644 source/images/logo-2.svg create mode 100644 source/images/logo-mobile.svg diff --git a/source/catalog.html b/source/catalog.html new file mode 100644 index 0000000..f119792 --- /dev/null +++ b/source/catalog.html @@ -0,0 +1,312 @@ + + + + + + Каталог продукции Cat Energy + + + + + + +
+ + +
+
+
+

Каталог продукции

+ +
+
+

Дополнительные товары

+
    +
  • +

    Сахарозаменитель

    +
    +
    Тара
    +
    1 упаковка (100 г)
    +
    Цена
    +
    200 ₽
    +
    + +
  • +
  • +

    Питьевая вода

    +
    +
    Тара
    +
    5 литров
    +
    Цена
    +
    50 ₽
    +
    + +
  • +
  • +

    Молоко

    +
    +
    Тара
    +
    1 литр
    +
    Цена
    +
    100 ₽
    +
    + +
  • +
  • +

    Витамины

    +
    +
    Тара
    +
    1 упаковка (30 г)
    +
    Цена
    +
    300 ₽
    +
    + +
  • +
+
+
+

Закажите все и получите чехол для кота в подарок!

+
+ +
+

Наше местоположение

+ Приглашаем к сотрудничеству дилеров! +

ул. Большая Конюшенная, д. 19/8 Санкт-Петербург

+
+
+ + + + diff --git a/source/images/logo-2.svg b/source/images/logo-2.svg new file mode 100644 index 0000000..02b1df9 --- /dev/null +++ b/source/images/logo-2.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/source/images/logo-mobile.svg b/source/images/logo-mobile.svg new file mode 100644 index 0000000..658e6a5 --- /dev/null +++ b/source/images/logo-mobile.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/source/index.html b/source/index.html index 6d2c813..2ec60ad 100644 --- a/source/index.html +++ b/source/index.html @@ -3,15 +3,128 @@ - Название проекта + Главная страница Cat Energy -
Шапка
-

Привет, мир!

+
+ + +
+
+
+

Функциональное питание для котов

+

Занялся собой? Займись котом!

+ Подобрать программу +
+
+

Программы питания

+
    +
  • +

    Похудение

    +

    Ваш кот весит больше собаки и почти утратил способность лазить по деревьям? Пора на диету! Cat Energy Slim поможет вашему питомцу сбросить лишний вес.

    + Каталог Slim +
  • +
  • +

    Набор массы

    +

    Заработать авторитет среди дворовых котов и даже собак? Серия Cat Energy Pro поможет вашему коту нарастить необходимые мышцы!

    + Каталог Pro +
  • +
+
+
+

Как это работает

+
    +
  • +

    Функциональное питание содержит только полезные питательные вещества.

    +
  • +
  • +

    Выпускается в виде порошка, который нужно лишь залить кипятком и готово.

    +
  • +
  • +

    Замените один-два приема обычной еды на наше функциональное питание.

    +
  • +
  • +

    Уже через месяц наслаждайтесь изменениями к лучшему вашего питомца!

    +
  • +
+
+
+

Живой пример

+

Борис сбросил 5 кг за 2 месяца, просто заменив свой обычный корм на Cat Energy Slim. Отличный результат без изнуряющих тренировок! При этом он не менял своих привычек и по-прежнему спит по 16 часов в день.

+
+
+
Снижение веса
+
5 кг
+
+
+
Затрачено времени
+
60 дней
+
+
+
Затраты на питание:
+
15 000 руб.
+
+
+
+
+

Наше местоположение

+ Приглашаем к сотрудничеству дилеров! +

ул. Большая Конюшенная, д. 19/8 Санкт-Петербург

+
+
+ diff --git a/source/styles/blocks/header.scss b/source/styles/blocks/header.scss index 797f7c4..5df6191 100644 --- a/source/styles/blocks/header.scss +++ b/source/styles/blocks/header.scss @@ -1,5 +1,5 @@ .header { - background-color: #663399; + // background-color: #663399; color: #ffffff; padding: 10px 15px; } From 03dab360daef3de18426ef185d3ef8544dfcaeb1 Mon Sep 17 00:00:00 2001 From: OlegSulitskii Date: Mon, 11 Nov 2024 11:26:58 +0300 Subject: [PATCH 04/13] Module2 task1 (#7) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Создает разметку всех страниц * Исправляет разметку всех страниц From 8c8af4166e7daa89e46fb6e44a93d1753a83f390 Mon Sep 17 00:00:00 2001 From: OlegSulitskii Date: Thu, 14 Nov 2024 17:44:42 +0300 Subject: [PATCH 05/13] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D1=8F=D0=B5=D1=82=20=D0=BB=D0=BE=D0=B3=D0=BE=D1=82=D0=B8=D0=BF?= =?UTF-8?q?=20=D0=B8=20=D1=80=D0=B0=D1=81=D1=82=D1=80=D0=BE=D0=B2=D1=83?= =?UTF-8?q?=D1=8E=20=D0=B3=D1=80=D0=B0=D1=84=D0=B8=D0=BA=D1=83=20(#8)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Исправляет разметку всех страниц * Добавляет логотип и растровую графику --- source/catalog.html | 330 +++++++++--------- source/favicon.ico | Bin 0 -> 1150 bytes source/favicons/180.png | Bin 0 -> 1925 bytes source/favicons/192.png | Bin 0 -> 2077 bytes source/favicons/512.png | Bin 0 -> 5888 bytes source/favicons/icon.svg | 6 + .../ce-buckwheat-slim1000-desktop@1x.png | Bin 0 -> 75730 bytes .../ce-buckwheat-slim1000-desktop@1x.webp | Bin 0 -> 10300 bytes .../ce-buckwheat-slim1000-desktop@2x.png | Bin 0 -> 202630 bytes .../ce-buckwheat-slim1000-desktop@2x.webp | Bin 0 -> 21536 bytes .../ce-buckwheat-slim1000-mobile@1x.png | Bin 0 -> 23535 bytes .../ce-buckwheat-slim1000-mobile@1x.webp | Bin 0 -> 4334 bytes .../ce-buckwheat-slim1000-mobile@2x.png | Bin 0 -> 65363 bytes .../ce-buckwheat-slim1000-mobile@2x.webp | Bin 0 -> 9266 bytes .../ce-buckwheat-slim1000-tablet@1x.png | Bin 0 -> 75713 bytes .../ce-buckwheat-slim1000-tablet@1x.webp | Bin 0 -> 10116 bytes .../ce-buckwheat-slim1000-tablet@2x.png | Bin 0 -> 127146 bytes .../ce-buckwheat-slim1000-tablet@2x.webp | Bin 0 -> 20302 bytes .../ce-buckwheat-slim500-desktop@1x.png | Bin 0 -> 54091 bytes .../ce-buckwheat-slim500-desktop@1x.webp | Bin 0 -> 8066 bytes .../ce-buckwheat-slim500-desktop@2x.png | Bin 0 -> 52217 bytes .../ce-buckwheat-slim500-desktop@2x.webp | Bin 0 -> 14494 bytes .../images/ce-buckwheat-slim500-mobile@1x.png | Bin 0 -> 15034 bytes .../ce-buckwheat-slim500-mobile@1x.webp | Bin 0 -> 3156 bytes .../images/ce-buckwheat-slim500-mobile@2x.png | Bin 0 -> 39491 bytes .../ce-buckwheat-slim500-mobile@2x.webp | Bin 0 -> 6386 bytes .../images/ce-buckwheat-slim500-tablet@1x.png | Bin 0 -> 53741 bytes .../ce-buckwheat-slim500-tablet@1x.webp | Bin 0 -> 8102 bytes .../images/ce-buckwheat-slim500-tablet@2x.png | Bin 0 -> 52659 bytes .../ce-buckwheat-slim500-tablet@2x.webp | Bin 0 -> 15328 bytes .../images/ce-chicken-pro1000-desktop@1x.png | Bin 0 -> 77547 bytes .../images/ce-chicken-pro1000-desktop@1x.webp | Bin 0 -> 9666 bytes .../images/ce-chicken-pro1000-desktop@2x.png | Bin 0 -> 199158 bytes .../images/ce-chicken-pro1000-desktop@2x.webp | Bin 0 -> 20166 bytes .../images/ce-chicken-pro1000-mobile@1x.png | Bin 0 -> 24372 bytes .../images/ce-chicken-pro1000-mobile@1x.webp | Bin 0 -> 3998 bytes .../images/ce-chicken-pro1000-mobile@2x.png | Bin 0 -> 67167 bytes .../images/ce-chicken-pro1000-mobile@2x.webp | Bin 0 -> 8386 bytes .../images/ce-chicken-pro1000-tablet@1x.png | Bin 0 -> 79845 bytes .../images/ce-chicken-pro1000-tablet@1x.webp | Bin 0 -> 9920 bytes .../images/ce-chicken-pro1000-tablet@2x.png | Bin 0 -> 192732 bytes .../images/ce-chicken-pro1000-tablet@2x.webp | Bin 0 -> 19904 bytes .../images/ce-chicken-pro500-desktop@1x.png | Bin 0 -> 52011 bytes .../images/ce-chicken-pro500-desktop@1x.webp | Bin 0 -> 7194 bytes .../images/ce-chicken-pro500-desktop@2x.png | Bin 0 -> 51479 bytes .../images/ce-chicken-pro500-desktop@2x.webp | Bin 0 -> 12508 bytes source/images/ce-chicken-pro500-mobile@1x.png | Bin 0 -> 17458 bytes .../images/ce-chicken-pro500-mobile@1x.webp | Bin 0 -> 3102 bytes source/images/ce-chicken-pro500-mobile@2x.png | Bin 0 -> 45189 bytes .../images/ce-chicken-pro500-mobile@2x.webp | Bin 0 -> 6256 bytes source/images/ce-chicken-pro500-tablet@1x.png | Bin 0 -> 53254 bytes .../images/ce-chicken-pro500-tablet@1x.webp | Bin 0 -> 7570 bytes source/images/ce-chicken-pro500-tablet@2x.png | Bin 0 -> 51968 bytes .../images/ce-chicken-pro500-tablet@2x.webp | Bin 0 -> 12858 bytes source/images/ce-fish-pro1000-desktop@1x.png | Bin 0 -> 75261 bytes source/images/ce-fish-pro1000-desktop@1x.webp | Bin 0 -> 9304 bytes source/images/ce-fish-pro1000-desktop@2x.png | Bin 0 -> 195021 bytes source/images/ce-fish-pro1000-desktop@2x.webp | Bin 0 -> 19064 bytes source/images/ce-fish-pro1000-mobile@1x.png | Bin 0 -> 23539 bytes source/images/ce-fish-pro1000-mobile@1x.webp | Bin 0 -> 4004 bytes source/images/ce-fish-pro1000-mobile@2x.png | Bin 0 -> 65179 bytes source/images/ce-fish-pro1000-mobile@2x.webp | Bin 0 -> 8210 bytes source/images/ce-fish-pro1000-tablet@1x.png | Bin 0 -> 75484 bytes source/images/ce-fish-pro1000-tablet@1x.webp | Bin 0 -> 9058 bytes source/images/ce-fish-pro1000-tablet@2x.png | Bin 0 -> 123626 bytes source/images/ce-fish-pro1000-tablet@2x.webp | Bin 0 -> 17832 bytes source/images/ce-fish-pro500-desktop@1x.png | Bin 0 -> 52979 bytes source/images/ce-fish-pro500-desktop@1x.webp | Bin 0 -> 7078 bytes source/images/ce-fish-pro500-desktop@2x.png | Bin 0 -> 52219 bytes source/images/ce-fish-pro500-desktop@2x.webp | Bin 0 -> 12104 bytes source/images/ce-fish-pro500-mobile@1x.png | Bin 0 -> 14973 bytes source/images/ce-fish-pro500-mobile@1x.webp | Bin 0 -> 2872 bytes source/images/ce-fish-pro500-mobile@2x.png | Bin 0 -> 38869 bytes source/images/ce-fish-pro500-mobile@2x.webp | Bin 0 -> 5712 bytes source/images/ce-fish-pro500-tablet@1x.png | Bin 0 -> 54335 bytes source/images/ce-fish-pro500-tablet@1x.webp | Bin 0 -> 7416 bytes source/images/ce-fish-pro500-tablet@2x.png | Bin 0 -> 52680 bytes source/images/ce-fish-pro500-tablet@2x.webp | Bin 0 -> 12636 bytes source/images/ce-rice-slim500-desktop@1x.png | Bin 0 -> 50507 bytes source/images/ce-rice-slim500-desktop@1x.webp | Bin 0 -> 7030 bytes source/images/ce-rice-slim500-desktop@2x.png | Bin 0 -> 50828 bytes source/images/ce-rice-slim500-desktop@2x.webp | Bin 0 -> 11840 bytes source/images/ce-rice-slim500-mobile@1x.png | Bin 0 -> 16267 bytes source/images/ce-rice-slim500-mobile@1x.webp | Bin 0 -> 3072 bytes source/images/ce-rice-slim500-mobile@2x.png | Bin 0 -> 41637 bytes source/images/ce-rice-slim500-mobile@2x.webp | Bin 0 -> 6134 bytes source/images/ce-rice-slim500-tablet@1x.png | Bin 0 -> 51496 bytes source/images/ce-rice-slim500-tablet@1x.webp | Bin 0 -> 7224 bytes source/images/ce-rice-slim500-tablet@2x.png | Bin 0 -> 51253 bytes source/images/ce-rice-slim500-tablet@2x.webp | Bin 0 -> 12466 bytes source/images/intro-cat-energy-desktop@1x.png | Bin 0 -> 268293 bytes .../images/intro-cat-energy-desktop@1x.webp | Bin 0 -> 41874 bytes source/images/intro-cat-energy-desktop@2x.png | Bin 0 -> 295502 bytes .../images/intro-cat-energy-desktop@2x.webp | Bin 0 -> 74220 bytes source/images/intro-cat-energy-mobile@1x.png | Bin 0 -> 106810 bytes source/images/intro-cat-energy-mobile@1x.webp | Bin 0 -> 18660 bytes source/images/intro-cat-energy-mobile@2x.png | Bin 0 -> 108101 bytes source/images/intro-cat-energy-mobile@2x.webp | Bin 0 -> 34418 bytes source/images/intro-cat-energy-tablet@1x.png | Bin 0 -> 484310 bytes source/images/intro-cat-energy-tablet@1x.webp | Bin 0 -> 27702 bytes source/images/intro-cat-energy-tablet@2x.png | Bin 0 -> 522190 bytes source/images/intro-cat-energy-tablet@2x.webp | Bin 0 -> 72920 bytes source/images/logo-2.svg | 18 - source/images/logo-cat-energy-img-desktop.svg | 1 + source/images/logo-cat-energy-img-mobile.svg | 1 + source/images/logo-cat-energy-img-tablet.svg | 1 + source/images/logo-cat-energy-text.svg | 1 + source/images/logo-mobile.svg | 19 - source/images/map-reserve-desktop@1x.jpg | Bin 0 -> 58240 bytes source/images/map-reserve-desktop@1x.webp | Bin 0 -> 38184 bytes source/images/map-reserve-desktop@2x.jpg | Bin 0 -> 155229 bytes source/images/map-reserve-desktop@2x.webp | Bin 0 -> 86864 bytes source/images/map-reserve-mobile@1x.jpg | Bin 0 -> 24539 bytes source/images/map-reserve-mobile@1x.webp | Bin 0 -> 21822 bytes source/images/map-reserve-mobile@2x.jpg | Bin 0 -> 79777 bytes source/images/map-reserve-mobile@2x.webp | Bin 0 -> 64658 bytes source/images/map-reserve-tablet@1x.jpg | Bin 0 -> 54620 bytes source/images/map-reserve-tablet@1x.webp | Bin 0 -> 44804 bytes source/images/map-reserve-tablet@2x.jpg | Bin 0 -> 144681 bytes source/images/map-reserve-tablet@2x.webp | Bin 0 -> 97650 bytes source/images/slider-fat-cat-mobile@1x.png | Bin 0 -> 94195 bytes source/images/slider-fat-cat-mobile@1x.webp | Bin 0 -> 12208 bytes source/images/slider-fat-cat-mobile@2x.png | Bin 0 -> 307872 bytes source/images/slider-fat-cat-mobile@2x.webp | Bin 0 -> 26778 bytes source/images/slider-fat-cat-tablet@1x.png | Bin 0 -> 323491 bytes source/images/slider-fat-cat-tablet@1x.webp | Bin 0 -> 28218 bytes source/images/slider-fat-cat-tablet@2x.png | Bin 0 -> 387846 bytes source/images/slider-fat-cat-tablet@2x.webp | Bin 0 -> 50314 bytes source/images/slider-slim-cat-mobile@1x.png | Bin 0 -> 55047 bytes source/images/slider-slim-cat-mobile@1x.webp | Bin 0 -> 10246 bytes source/images/slider-slim-cat-mobile@2x.png | Bin 0 -> 171948 bytes source/images/slider-slim-cat-mobile@2x.webp | Bin 0 -> 22734 bytes source/images/slider-slim-cat-tablet@1x.png | Bin 0 -> 186575 bytes source/images/slider-slim-cat-tablet@1x.webp | Bin 0 -> 25068 bytes source/images/slider-slim-cat-tablet@2x.png | Bin 0 -> 220897 bytes source/images/slider-slim-cat-tablet@2x.webp | Bin 0 -> 39514 bytes source/index.html | 77 ++-- source/manifest.webmanifest | 19 + source/styles/blocks/header.scss | 5 - 139 files changed, 258 insertions(+), 220 deletions(-) create mode 100644 source/favicon.ico create mode 100644 source/favicons/180.png create mode 100644 source/favicons/192.png create mode 100644 source/favicons/512.png create mode 100644 source/favicons/icon.svg create mode 100644 source/images/ce-buckwheat-slim1000-desktop@1x.png create mode 100644 source/images/ce-buckwheat-slim1000-desktop@1x.webp create mode 100644 source/images/ce-buckwheat-slim1000-desktop@2x.png create mode 100644 source/images/ce-buckwheat-slim1000-desktop@2x.webp create mode 100644 source/images/ce-buckwheat-slim1000-mobile@1x.png create mode 100644 source/images/ce-buckwheat-slim1000-mobile@1x.webp create mode 100644 source/images/ce-buckwheat-slim1000-mobile@2x.png create mode 100644 source/images/ce-buckwheat-slim1000-mobile@2x.webp create mode 100644 source/images/ce-buckwheat-slim1000-tablet@1x.png create mode 100644 source/images/ce-buckwheat-slim1000-tablet@1x.webp create mode 100644 source/images/ce-buckwheat-slim1000-tablet@2x.png create mode 100644 source/images/ce-buckwheat-slim1000-tablet@2x.webp create mode 100644 source/images/ce-buckwheat-slim500-desktop@1x.png create mode 100644 source/images/ce-buckwheat-slim500-desktop@1x.webp create mode 100644 source/images/ce-buckwheat-slim500-desktop@2x.png create mode 100644 source/images/ce-buckwheat-slim500-desktop@2x.webp create mode 100644 source/images/ce-buckwheat-slim500-mobile@1x.png create mode 100644 source/images/ce-buckwheat-slim500-mobile@1x.webp create mode 100644 source/images/ce-buckwheat-slim500-mobile@2x.png create mode 100644 source/images/ce-buckwheat-slim500-mobile@2x.webp create mode 100644 source/images/ce-buckwheat-slim500-tablet@1x.png create mode 100644 source/images/ce-buckwheat-slim500-tablet@1x.webp create mode 100644 source/images/ce-buckwheat-slim500-tablet@2x.png create mode 100644 source/images/ce-buckwheat-slim500-tablet@2x.webp create mode 100644 source/images/ce-chicken-pro1000-desktop@1x.png create mode 100644 source/images/ce-chicken-pro1000-desktop@1x.webp create mode 100644 source/images/ce-chicken-pro1000-desktop@2x.png create mode 100644 source/images/ce-chicken-pro1000-desktop@2x.webp create mode 100644 source/images/ce-chicken-pro1000-mobile@1x.png create mode 100644 source/images/ce-chicken-pro1000-mobile@1x.webp create mode 100644 source/images/ce-chicken-pro1000-mobile@2x.png create mode 100644 source/images/ce-chicken-pro1000-mobile@2x.webp create mode 100644 source/images/ce-chicken-pro1000-tablet@1x.png create mode 100644 source/images/ce-chicken-pro1000-tablet@1x.webp create mode 100644 source/images/ce-chicken-pro1000-tablet@2x.png create mode 100644 source/images/ce-chicken-pro1000-tablet@2x.webp create mode 100644 source/images/ce-chicken-pro500-desktop@1x.png create mode 100644 source/images/ce-chicken-pro500-desktop@1x.webp create mode 100644 source/images/ce-chicken-pro500-desktop@2x.png create mode 100644 source/images/ce-chicken-pro500-desktop@2x.webp create mode 100644 source/images/ce-chicken-pro500-mobile@1x.png create mode 100644 source/images/ce-chicken-pro500-mobile@1x.webp create mode 100644 source/images/ce-chicken-pro500-mobile@2x.png create mode 100644 source/images/ce-chicken-pro500-mobile@2x.webp create mode 100644 source/images/ce-chicken-pro500-tablet@1x.png create mode 100644 source/images/ce-chicken-pro500-tablet@1x.webp create mode 100644 source/images/ce-chicken-pro500-tablet@2x.png create mode 100644 source/images/ce-chicken-pro500-tablet@2x.webp create mode 100644 source/images/ce-fish-pro1000-desktop@1x.png create mode 100644 source/images/ce-fish-pro1000-desktop@1x.webp create mode 100644 source/images/ce-fish-pro1000-desktop@2x.png create mode 100644 source/images/ce-fish-pro1000-desktop@2x.webp create mode 100644 source/images/ce-fish-pro1000-mobile@1x.png create mode 100644 source/images/ce-fish-pro1000-mobile@1x.webp create mode 100644 source/images/ce-fish-pro1000-mobile@2x.png create mode 100644 source/images/ce-fish-pro1000-mobile@2x.webp create mode 100644 source/images/ce-fish-pro1000-tablet@1x.png create mode 100644 source/images/ce-fish-pro1000-tablet@1x.webp create mode 100644 source/images/ce-fish-pro1000-tablet@2x.png create mode 100644 source/images/ce-fish-pro1000-tablet@2x.webp create mode 100644 source/images/ce-fish-pro500-desktop@1x.png create mode 100644 source/images/ce-fish-pro500-desktop@1x.webp create mode 100644 source/images/ce-fish-pro500-desktop@2x.png create mode 100644 source/images/ce-fish-pro500-desktop@2x.webp create mode 100644 source/images/ce-fish-pro500-mobile@1x.png create mode 100644 source/images/ce-fish-pro500-mobile@1x.webp create mode 100644 source/images/ce-fish-pro500-mobile@2x.png create mode 100644 source/images/ce-fish-pro500-mobile@2x.webp create mode 100644 source/images/ce-fish-pro500-tablet@1x.png create mode 100644 source/images/ce-fish-pro500-tablet@1x.webp create mode 100644 source/images/ce-fish-pro500-tablet@2x.png create mode 100644 source/images/ce-fish-pro500-tablet@2x.webp create mode 100644 source/images/ce-rice-slim500-desktop@1x.png create mode 100644 source/images/ce-rice-slim500-desktop@1x.webp create mode 100644 source/images/ce-rice-slim500-desktop@2x.png create mode 100644 source/images/ce-rice-slim500-desktop@2x.webp create mode 100644 source/images/ce-rice-slim500-mobile@1x.png create mode 100644 source/images/ce-rice-slim500-mobile@1x.webp create mode 100644 source/images/ce-rice-slim500-mobile@2x.png create mode 100644 source/images/ce-rice-slim500-mobile@2x.webp create mode 100644 source/images/ce-rice-slim500-tablet@1x.png create mode 100644 source/images/ce-rice-slim500-tablet@1x.webp create mode 100644 source/images/ce-rice-slim500-tablet@2x.png create mode 100644 source/images/ce-rice-slim500-tablet@2x.webp create mode 100644 source/images/intro-cat-energy-desktop@1x.png create mode 100644 source/images/intro-cat-energy-desktop@1x.webp create mode 100644 source/images/intro-cat-energy-desktop@2x.png create mode 100644 source/images/intro-cat-energy-desktop@2x.webp create mode 100644 source/images/intro-cat-energy-mobile@1x.png create mode 100644 source/images/intro-cat-energy-mobile@1x.webp create mode 100644 source/images/intro-cat-energy-mobile@2x.png create mode 100644 source/images/intro-cat-energy-mobile@2x.webp create mode 100644 source/images/intro-cat-energy-tablet@1x.png create mode 100644 source/images/intro-cat-energy-tablet@1x.webp create mode 100644 source/images/intro-cat-energy-tablet@2x.png create mode 100644 source/images/intro-cat-energy-tablet@2x.webp delete mode 100644 source/images/logo-2.svg create mode 100644 source/images/logo-cat-energy-img-desktop.svg create mode 100644 source/images/logo-cat-energy-img-mobile.svg create mode 100644 source/images/logo-cat-energy-img-tablet.svg create mode 100644 source/images/logo-cat-energy-text.svg delete mode 100644 source/images/logo-mobile.svg create mode 100644 source/images/map-reserve-desktop@1x.jpg create mode 100644 source/images/map-reserve-desktop@1x.webp create mode 100644 source/images/map-reserve-desktop@2x.jpg create mode 100644 source/images/map-reserve-desktop@2x.webp create mode 100644 source/images/map-reserve-mobile@1x.jpg create mode 100644 source/images/map-reserve-mobile@1x.webp create mode 100644 source/images/map-reserve-mobile@2x.jpg create mode 100644 source/images/map-reserve-mobile@2x.webp create mode 100644 source/images/map-reserve-tablet@1x.jpg create mode 100644 source/images/map-reserve-tablet@1x.webp create mode 100644 source/images/map-reserve-tablet@2x.jpg create mode 100644 source/images/map-reserve-tablet@2x.webp create mode 100644 source/images/slider-fat-cat-mobile@1x.png create mode 100644 source/images/slider-fat-cat-mobile@1x.webp create mode 100644 source/images/slider-fat-cat-mobile@2x.png create mode 100644 source/images/slider-fat-cat-mobile@2x.webp create mode 100644 source/images/slider-fat-cat-tablet@1x.png create mode 100644 source/images/slider-fat-cat-tablet@1x.webp create mode 100644 source/images/slider-fat-cat-tablet@2x.png create mode 100644 source/images/slider-fat-cat-tablet@2x.webp create mode 100644 source/images/slider-slim-cat-mobile@1x.png create mode 100644 source/images/slider-slim-cat-mobile@1x.webp create mode 100644 source/images/slider-slim-cat-mobile@2x.png create mode 100644 source/images/slider-slim-cat-mobile@2x.webp create mode 100644 source/images/slider-slim-cat-tablet@1x.png create mode 100644 source/images/slider-slim-cat-tablet@1x.webp create mode 100644 source/images/slider-slim-cat-tablet@2x.png create mode 100644 source/images/slider-slim-cat-tablet@2x.webp create mode 100644 source/manifest.webmanifest delete mode 100644 source/styles/blocks/header.scss diff --git a/source/catalog.html b/source/catalog.html index f119792..5bbde03 100644 --- a/source/catalog.html +++ b/source/catalog.html @@ -7,31 +7,39 @@ + + + +
- + + + + Логотип Cat Energy + + + + Текстовый вариант логотипа Cat Energy
@@ -39,170 +47,170 @@

Каталог продукции

  • - - Стандартная упаковка Cat Energy
-            Pro Курица + + + + + + + + Стандартная упаковка Cat Energy Pro Курица +

    Cat Energy Pro 500 г

    -
    -
    -
    Масса
    -
    500 г
    -
    -
    -
    Вкус
    -
    Курица
    -
    -
    -
    Цена
    -
    700 ₽
    -
    +
    +
    Масса
    +
    500 г
    +
    Вкус
    +
    Курица
    +
    Цена
    +
    700 ₽
  • - - Большая упаковка Cat Energy
-            Pro Курица + + + + + + + + Большая упаковка Cat Energy Pro Курица +

    Cat Energy Pro 1000 г

    -
    -
    -
    Масса
    -
    1000 г
    -
    -
    -
    Вкус
    -
    Курица
    -
    -
    -
    Цена
    -
    1000 ₽
    -
    +
    +
    Масса
    +
    1000 г
    +
    Вкус
    +
    Курица
    +
    Цена
    +
    1000 ₽
  • - - Стандартная упаковка Cat Energy
-            Pro Рыба + + + + + + + + Стандартная упаковка Cat Energy Pro Рыба +

    Cat Energy Pro 500 г

    -
    -
    -
    Масса
    -
    500 г
    -
    -
    -
    Вкус
    -
    Рыба
    -
    -
    -
    Цена
    -
    700 ₽
    -
    +
    +
    Масса
    +
    500 г
    +
    Вкус
    +
    Рыба
    +
    Цена
    +
    700 ₽
  • - - Большая упаковка Cat Energy
-            Pro Рыба + + + + + + + + Большая упаковка Cat Energy Pro Рыба +

    Cat Energy Pro 1000 г

    -
    -
    -
    Масса
    -
    1000 г
    -
    -
    -
    Вкус
    -
    Рыба
    -
    -
    -
    Цена
    -
    1000 ₽
    -
    +
    +
    Масса
    +
    1000 г
    +
    Вкус
    +
    Рыба
    +
    Цена
    +
    1000 ₽
  • - - Стандартная упаковка Cat Energy
-            Slim Гречка + + + + + + + + Стандартная упаковка Cat Energy Slim Гречка +

    Cat Energy Slim 500 г

    -
    -
    -
    Масса
    -
    500 г
    -
    -
    -
    Вкус
    -
    Гречка
    -
    -
    -
    Цена
    -
    400 ₽
    -
    +
    +
    Масса
    +
    500 г
    +
    Вкус
    +
    Гречка
    +
    Цена
    +
    400 ₽
  • - - Большая упаковка Cat Energy
-            Slim Гречка + + + + + + + + Большая упаковка Cat Energy Slim Гречка +

    Cat Energy Slim 1000 г

    -
    -
    -
    Масса
    -
    1000 г
    -
    -
    -
    Вкус
    -
    Гречка
    -
    -
    -
    Цена
    -
    700 ₽
    -
    +
    +
    Масса
    +
    1000 г
    +
    Вкус
    +
    Гречка
    +
    Цена
    +
    700 ₽
  • - - Стандартная упаковка Cat Energy
-            Slim Рис + + + + + + + + Стандартная упаковка Cat Energy Slim Рис +

    Cat Energy Slim 500 г

    -
    -
    -
    Масса
    -
    500 г
    -
    -
    -
    Вкус
    -
    Рис
    -
    -
    -
    Цена
    -
    500 ₽
    -
    +
    +
    Масса
    +
    500 г
    +
    Вкус
    +
    Рис
    +
    Цена
    +
    500 ₽
  • @@ -218,69 +226,77 @@

    Дополнительные товары

    • Сахарозаменитель

      -
      -
      Тара
      -
      1 упаковка (100 г)
      -
      Цена
      -
      200 ₽
      +
      +
      Тара
      +
      1 упаковка (100 г)
      +
      Цена
      +
      200 ₽
    • Питьевая вода

      -
      -
      Тара
      -
      5 литров
      -
      Цена
      -
      50 ₽
      +
      +
      Тара
      +
      5 литров
      +
      Цена
      +
      50 ₽
    • Молоко

      -
      -
      Тара
      -
      1 литр
      -
      Цена
      -
      100 ₽
      +
      +
      Тара
      +
      1 литр
      +
      Цена
      +
      100 ₽
    • Витамины

      -
      -
      Тара
      -
      1 упаковка (30 г)
      -
      Цена
      -
      300 ₽
      +
      +
      Тара
      +
      1 упаковка (30 г)
      +
      Цена
      +
      300 ₽
    -
    -

    Закажите все и получите чехол для кота в подарок!

    -
    +
    +

    Уникальные предложения

    +

    Закажите все и получите чехол для кота в подарок!

    +
    -

    Наше местоположение

    - Приглашаем к сотрудничеству дилеров! +

    Приглашаем к сотрудничеству дилеров!

    ул. Большая Конюшенная, д. 19/8 Санкт-Петербург

    + + + + + + + Карта с отмеченной локацией магазина Cat Energy +