diff --git a/static/css/moover.css b/static/css/moover.css index 8f8e67c..336c006 100644 --- a/static/css/moover.css +++ b/static/css/moover.css @@ -411,7 +411,7 @@ b { display: flex; justify-content: center; align-items: center; - height: calc(100% - 16px); + height: 600px; } .chatterbox .title { @@ -445,11 +445,6 @@ b { margin-bottom: 123px; } -.use .title { - max-width: 80%; - margin-bottom: 49px; -} - .use__img { width: 67.5%; margin-left: 16px; @@ -467,26 +462,31 @@ b { color: var(--color-grey2); } -.use.use--diff .title { +.use .title { + max-width: 80%; + margin-bottom: 49px; +} + +.use--diff .title { width: 60%; margin-bottom: 60px; } -.use.use--diff .use__img { +.use--diff .use__img { width: 100%; margin-left: 0; margin-bottom: 17px; } -.use.use--lett { +.use--lett { margin-bottom: 120px; } -.use.use--lett .title { +.use--lett .title { margin-bottom: 51px; } -.use.use--lett .use__img { +.use--lett .use__img { margin-left: -5px; margin-right: -5px; max-width: 110%; @@ -496,13 +496,25 @@ b { .animate { padding: 60px 40px 49px; opacity: 0; - transform: translateX(-180px); background-color: var(--color-black2); border-radius: 30px; color: white; margin-bottom: 160px; } +.animate.left { + transform: translateX(-180px); +} + +.animate.right { + transform: translateX(180px); +} + +.animate__link { + color: var(--color-orange); + text-decoration: underline !important; +} + .animate .title { margin-bottom: 25px; max-width: 87%; @@ -514,11 +526,6 @@ b { margin: 0 auto 23px; } -.animate__link { - color: var(--color-orange); - text-decoration: underline !important; -} - .about { margin-bottom: 168px; } @@ -560,7 +567,7 @@ b { } .benefits { - margin-bottom: 50px; + margin-bottom: 132px; } .benefits__grid { @@ -588,3 +595,54 @@ b { top: 14px; right: -11px; } + +.uses { + margin-bottom: 122px; +} + +.uses__grid { + text-align: left; + display: grid; + grid-template-columns: repeat(3, 1fr); + /* max-width: 101.5%; */ + /* width: 101.5%; */ +} + +.uses__item { + min-height: 50px; + margin-bottom: 43px; + padding: 0 50px 0 2px; +} + +.uses__icon { + margin-bottom: 11px; +} + +.uses .title { + max-width: 50%; + margin: 0 auto 60px; +} + +.sore { + margin-bottom: 160px; +} + +.sore__img { + margin: 0 auto 26px; + position: relative; + left: -17px; +} + +.sore .title { + margin-bottom: 40px; +} + +.sore .subtitle { + max-width: 62%; + margin: 0 auto -1px; +} + +.sore .h3 { + max-width: 47%; + margin: 0 auto 19px; +} diff --git a/static/css/moover/animate.css b/static/css/moover/animate.css new file mode 100644 index 0000000..f3eb592 --- /dev/null +++ b/static/css/moover/animate.css @@ -0,0 +1,32 @@ +.animate { + padding: 60px 40px 49px; + opacity: 0; + background-color: var(--color-black2); + border-radius: 30px; + color: white; + margin-bottom: 160px; +} + +.animate.left { + transform: translateX(-180px); +} + +.animate.right { + transform: translateX(180px); +} + +.animate__link { + color: var(--color-orange); + text-decoration: underline !important; +} + +.animate .title { + margin-bottom: 25px; + max-width: 87%; + /*width: 90%;*/ +} + +.animate .subtitle { + width: 47%; + margin: 0 auto 23px; +} diff --git a/static/css/moover/benefits.css b/static/css/moover/benefits.css index 25a1d6b..fd502f0 100644 --- a/static/css/moover/benefits.css +++ b/static/css/moover/benefits.css @@ -1,5 +1,5 @@ .benefits { - margin-bottom: 50px; + margin-bottom: 132px; } .benefits__grid { diff --git a/static/css/moover/chatterbox.css b/static/css/moover/chatterbox.css index 8d46c7c..0599c85 100644 --- a/static/css/moover/chatterbox.css +++ b/static/css/moover/chatterbox.css @@ -97,7 +97,7 @@ display: flex; justify-content: center; align-items: center; - height: calc(100% - 16px); + height: 600px; } .chatterbox .title { diff --git a/static/css/moover/sore.css b/static/css/moover/sore.css new file mode 100644 index 0000000..a6e7efd --- /dev/null +++ b/static/css/moover/sore.css @@ -0,0 +1,23 @@ +.sore { + margin-bottom: 160px; +} + +.sore__img { + margin: 0 auto 26px; + position: relative; + left: -17px; +} + +.sore .title { + margin-bottom: 40px; +} + +.sore .subtitle { + max-width: 62%; + margin: 0 auto -1px; +} + +.sore .h3 { + max-width: 47%; + margin: 0 auto 19px; +} diff --git a/static/css/moover/use.css b/static/css/moover/use.css new file mode 100644 index 0000000..07f4cfc --- /dev/null +++ b/static/css/moover/use.css @@ -0,0 +1,51 @@ +.use { + margin-bottom: 123px; +} + +.use__img { + width: 67.5%; + margin-left: 16px; + margin-bottom: 31px; +} + +.use__btn { + margin-bottom: 11px; +} + +.use__link { + font-size: 18px; + font-weight: 600; + line-height: 26px; + color: var(--color-grey2); +} + +.use .title { + max-width: 80%; + margin-bottom: 49px; +} + +.use--diff .title { + width: 60%; + margin-bottom: 60px; +} + +.use--diff .use__img { + width: 100%; + margin-left: 0; + margin-bottom: 17px; +} + +.use--lett { + margin-bottom: 120px; +} + +.use--lett .title { + margin-bottom: 51px; +} + +.use--lett .use__img { + margin-left: -5px; + margin-right: -5px; + max-width: 110%; + width: 1290px; +} diff --git a/static/css/moover/uses.css b/static/css/moover/uses.css new file mode 100644 index 0000000..57cf5a7 --- /dev/null +++ b/static/css/moover/uses.css @@ -0,0 +1,26 @@ +.uses { + margin-bottom: 122px; +} + +.uses__grid { + text-align: left; + display: grid; + grid-template-columns: repeat(3, 1fr); + /* max-width: 101.5%; */ + /* width: 101.5%; */ +} + +.uses__item { + min-height: 50px; + margin-bottom: 43px; + padding: 0 50px 0 2px; +} + +.uses__icon { + margin-bottom: 11px; +} + +.uses .title { + max-width: 50%; + margin: 0 auto 60px; +} diff --git a/static/img/png/sore2.png b/static/img/png/sore2.png new file mode 100644 index 0000000..8a3d14b Binary files /dev/null and b/static/img/png/sore2.png differ diff --git a/static/img/svg/bax.svg b/static/img/svg/bax.svg new file mode 100644 index 0000000..9f68be4 --- /dev/null +++ b/static/img/svg/bax.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/static/img/svg/books.svg b/static/img/svg/books.svg new file mode 100644 index 0000000..71f375a --- /dev/null +++ b/static/img/svg/books.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/static/img/svg/box.svg b/static/img/svg/box.svg new file mode 100644 index 0000000..526c093 --- /dev/null +++ b/static/img/svg/box.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/static/img/svg/earth.svg b/static/img/svg/earth.svg new file mode 100644 index 0000000..e0bbe3c --- /dev/null +++ b/static/img/svg/earth.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/static/img/svg/files.svg b/static/img/svg/files.svg new file mode 100644 index 0000000..b47f295 --- /dev/null +++ b/static/img/svg/files.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/static/img/svg/present.svg b/static/img/svg/present.svg new file mode 100644 index 0000000..9200fcd --- /dev/null +++ b/static/img/svg/present.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/styles/moover.scss b/styles/moover.scss index c7945b5..5b6a646 100644 --- a/styles/moover.scss +++ b/styles/moover.scss @@ -6,4 +6,6 @@ @import "./moover/use"; @import "./moover/animate"; @import "./moover/about"; -@import "./moover/benefits"; \ No newline at end of file +@import "./moover/benefits"; +@import "./moover/uses"; +@import "./moover/sore"; diff --git a/styles/moover/animate.scss b/styles/moover/animate.scss index 1f402ce..7364eef 100644 --- a/styles/moover/animate.scss +++ b/styles/moover/animate.scss @@ -1,24 +1,32 @@ .animate { padding: 60px 40px 49px; opacity: 0; - transform: translateX(-180px); background-color: var(--color-black2); border-radius: 30px; color: white; margin-bottom: 160px; -} -.animate .title { - margin-bottom: 25px; - max-width: 87%; - /*width: 90%;*/ -} -.animate .subtitle { - width: 47%; - margin: 0 auto 23px; -} + &.left { + transform: translateX(-180px); + } -.animate__link { - color: var(--color-orange); - text-decoration: underline !important; -} \ No newline at end of file + &.right { + transform: translateX(180px); + } + + &__link { + color: var(--color-orange); + text-decoration: underline !important; + } + + .title { + margin-bottom: 25px; + max-width: 87%; + /*width: 90%;*/ + } + + .subtitle { + width: 47%; + margin: 0 auto 23px; + } +} diff --git a/styles/moover/benefits.scss b/styles/moover/benefits.scss index 7beb626..ee87a13 100644 --- a/styles/moover/benefits.scss +++ b/styles/moover/benefits.scss @@ -1,5 +1,5 @@ .benefits { - margin-bottom: 50px; + margin-bottom: 132px; &__grid { text-align: left; diff --git a/styles/moover/chatterbox.scss b/styles/moover/chatterbox.scss index bf3e341..c0f6aa2 100644 --- a/styles/moover/chatterbox.scss +++ b/styles/moover/chatterbox.scss @@ -99,7 +99,7 @@ display: flex; justify-content: center; align-items: center; - height: calc(100% - 16px); + height: 600px; } .title { diff --git a/styles/moover/sore.scss b/styles/moover/sore.scss new file mode 100644 index 0000000..59fdb8d --- /dev/null +++ b/styles/moover/sore.scss @@ -0,0 +1,27 @@ +.sore { + margin-bottom: 160px; + + &__img { + margin: 0 auto 26px; + position: relative; + left: -17px; + + } + + .title { + margin-bottom: 40px; + } + + + .subtitle { + max-width: 62%; + margin: 0 auto -1px; + + } + + .h3 { + max-width: 47%; + margin: 0 auto 19px; + + } +} diff --git a/styles/moover/use.scss b/styles/moover/use.scss index a1cdc72..892de9a 100644 --- a/styles/moover/use.scss +++ b/styles/moover/use.scss @@ -1,54 +1,55 @@ .use { margin-bottom: 123px; -} -.use .title { - max-width: 80%; - margin-bottom: 49px; -} + &__img { + width: 67.5%; + margin-left: 16px; + margin-bottom: 31px; + } -.use__img { - width: 67.5%; - margin-left: 16px; - margin-bottom: 31px; -} + &__btn { + margin-bottom: 11px; + } -.use__btn { - margin-bottom: 11px; -} + &__link { + font-size: 18px; + font-weight: 600; + line-height: 26px; + color: var(--color-grey2); + } -.use__link { - font-size: 18px; - font-weight: 600; - line-height: 26px; - color: var(--color-grey2); -} + .title { + max-width: 80%; + margin-bottom: 49px; + } -.use.use--diff .title { - width: 60%; - margin-bottom: 60px; -} + &--diff { + .title { + width: 60%; + margin-bottom: 60px; + } -.use.use--diff .use__img { - width: 100%; - margin-left: 0; - margin-bottom: 17px; -} + .use__img { + width: 100%; + margin-left: 0; + margin-bottom: 17px; + } + } -.use.use--lett { - margin-bottom: 120px; -} + &--lett { + margin-bottom: 120px; -.use.use--lett .title { - margin-bottom: 51px; -} + .title { + margin-bottom: 51px; + } -.use.use--lett .use__img { - margin-left: -5px; - margin-right: -5px; - max-width: 110%; - width: 1290px; - + .use__img { + margin-left: -5px; + margin-right: -5px; + max-width: 110%; + width: 1290px; + } + } } diff --git a/styles/moover/uses.scss b/styles/moover/uses.scss new file mode 100644 index 0000000..039b017 --- /dev/null +++ b/styles/moover/uses.scss @@ -0,0 +1,28 @@ +.uses { + margin-bottom: 122px; + + &__grid { + text-align: left; + display: grid; + grid-template-columns: repeat(3, 1fr); + /* max-width: 101.5%; */ + /* width: 101.5%; */ + } + + + &__item { + min-height: 50px; + margin-bottom: 43px; + padding: 0 50px 0 2px; + } + + &__icon { + margin-bottom: 11px; + } + + .title { + max-width: 50%; + margin: 0 auto 60px; + } + +} \ No newline at end of file diff --git a/templates/pages/p_mover_landing_page.html b/templates/pages/p_mover_landing_page.html index 854d3f4..305dfed 100644 --- a/templates/pages/p_mover_landing_page.html +++ b/templates/pages/p_mover_landing_page.html @@ -5,17 +5,11 @@ {% block meta %} - {# #} {% endblock %} -{#{% block before_close %}#} -{# #} -{# #} -{#{% endblock %}#} {% block content %} -

@@ -84,7 +78,6 @@

- {############easy###############}
{% translate "Один простой шаг, чтобы отправить посылку" %} @@ -115,7 +108,6 @@
{% translate "Разместить объявление" %}
- {############use###############}
{% translate "Уже пользуются сайтом и находят перевозчиков" %}
list users @@ -133,7 +125,7 @@
{% translate "Что о нас говорят люди" %}
- {# {% for media_item in page.get_video_items %}#} + {# {% for media_item in page.get_media_items %}#} {#
#} {#
#} {#
#} @@ -213,9 +205,7 @@
- -
@@ -237,70 +227,70 @@
{% translate "Что о нас пишут люди" %}
list letters
-
+
{% translate "Хочешь отправить посылку партнеру, родным или знакомым людям быстро и недорого?" %}
@@ -309,28 +299,30 @@ {% translate "Разместить объявление" %}
@@ -346,7 +338,6 @@ {# #}
-
{% translate "Преимущества сервиса" %}
@@ -382,12 +373,71 @@
-
+
+
{% translate "Для каких целей можно использовать наш сервис" %}
- - - - - +
+
+ image icon +
+ {% translate "Когда нужно отправить документы партнеру или родственнику" %} +
+
+
+ image icon +
+ {% translate "Когда необходимо отправить посылку в другую страну" %} +
+
+
+ image icon +
+ {% translate "Когда нужно отправить подарок семье, друзьям или знакомым" %} +
+
+
+ image icon +
+ {% translate "Когда стоимость пересылки через почтовый сервис высокая или перевозка занимает длительное время" %} +
+
+
+ image icon +
+ {% translate "Когда нужно отправить не только маленькую посылку, но и крупногабаритный груз" %} +
+
+
+ image icon +
+ {% translate "Когда нет прямого сообщения из пункта А в пункт Б обычными сервисами доставки" %} +
+
+
+
+
+
+ {% translate "Размести свое объявление о необходимости перевозки посылки прямо сейчас" %} +
+
+ {% translate "Достаточно просто зайти на сайт, разместить объявление в пару кликов и дождаться откликов от попутчиков." %} +
+ {% translate "Разместить объявление" %} +
+
+
+ {% translate "О наболевшем..." %} +
+
+ {% translate "Мы знаем, каково это без конца и края закидывать сообщения в чаты и группы в социальных сетях, в надежде найти человека, который едет или летит в нужном направлении, чтобы передать посылоку своим родным или близким. Очень часто ещё и стоимость пересылки в обычных почтовых сервисах выше стоимости самой посылки." %} +
+ sore image +
+ {% translate "Зарегистрируйте бесплатно прямо сейчас и размести свое первое объявление об отправке посылки" %} +
+ {% translate "Зарегистрироваться и разместить" %} +
+ +
{% endblock %} \ No newline at end of file