diff --git a/content/faq/hero_image.png b/content/faq/hero_image.png index 9e844785..d87ea04d 100644 Binary files a/content/faq/hero_image.png and b/content/faq/hero_image.png differ diff --git a/content/faq/index.md b/content/faq/index.md index d09069e4..bd2a7a26 100644 --- a/content/faq/index.md +++ b/content/faq/index.md @@ -7,26 +7,14 @@ extra: hero_title: Faq hero_image: /faq/hero_image.png menu_title_pre: Home - faq_question_title_1: About Organic Maps - faq_question_title_2: App - faq_question_title_3: Operating The Map - faq_question_title_4: Route Planning & Routing - faq_question_title_5: Bookmarks, Points, Tracks - faq_question_title_6: Map Data - faq_question_title_7: GPS - faq_question_title_8: Features - faq_question_title_9: Text-To-Speach (TTS) - faq_question_title_10: Troubleshooting - faq_question_title_11: Community Collaboration - faq_question_app_q_1: How to edit or move bookmarks? - faq_question_app_q_2: How to remove bookmark or track? - faq_question_app_q_3: How to import multiple bookmarks on Android? - faq_question_app_q_4: Hot to import GPX track on Android and iOS? - faq_answer_app_q_1_1: To edit a bookmark use longtap menu or hit "Edit bookmark" when bookmark is selected on map. - faq_answer_app_q_1_2: You can change bookmark name, description, color, and folder. Don't forget to tap "Save". - faq_answer_app_q_2_1: On Android you can remove bookmark from from bookmarks list using longtap menu. On iOS":" "???" - faq_answer_app_q_3_1: Push "Import Bookmarks and tracks" button. Choose folder on your phone with KML/KMZ/GPX files. Organic Maps will scan picked folder and import all bookmarks and tracks. - faq_answer_app_q_4_1: If you received GPX file in email, messenger, or cloud drive you can import it directly to Organic Maps app. - faq_answer_app_q_4_2: On iOS tap on GPX file and press Share button":" Then select Organic Maps to open the file. - faq_answer_app_q_4_3: On Android tap on received GPX file to see Share menu. Select Organic Maps to import the file. + faq_question_title_1: General + faq_question_title_1_1: What is Telegram? + faq_question_title_1_2: Who is it for? + faq_question_title_1_3: How is it different from WhatsApp? + faq_question_title_1_4: How old is Telegram? + faq_question_title_1_5: Is it available on my device? + faq_question_title_1_6: Who are the people behind Telegram? + faq_question_title_2: Telegram Basics + faq_question_title_3: Groups and Channels + --- \ No newline at end of file diff --git a/content/support/index.md b/content/support/index.md index 47b344d8..ed58eea9 100644 --- a/content/support/index.md +++ b/content/support/index.md @@ -6,7 +6,7 @@ weight: 10 extra: hero_title: Support hero_description: Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor - support_card_title_1: FAQ + support_card_title_1: How can we help? menu_title_pre: Home hero_image: support/suport-kv.png support_card_title_2: Email Contact @@ -14,5 +14,17 @@ extra: support_card_description_1: This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors. support_card_description_2: This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors. support_card_description_3: This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors. - + hero_buttons: + hero_button_1: About Organic Maps + hero_button_2: App + hero_button_3: Operating the Map + hero_button_4: Search + hero_button_5: Route Planning & Routing + hero_button_6: Bookmarks, Points, & Tracks + hero_button_7: Map Data + hero_button_8: GPS & Compass + hero_button_9: Features + hero_button_10: Text-To-Speech (TTS) + hero_button_11: Troubleshooting + hero_button_12: Community Collaboration --- \ No newline at end of file diff --git a/sass/common/header.scss b/sass/common/header.scss index 16ba9870..a3456e38 100644 --- a/sass/common/header.scss +++ b/sass/common/header.scss @@ -191,10 +191,11 @@ } &--green { - animation: header-play 2.2s ease-in-out; + //animation: header-play 2.2s ease-in-out; background-color: var(--common-green-primery); - + transition: background-color 1s; .header { + transition: background-color 1s; &__logo { transition: color var(--transition); color: var(--common-green); diff --git a/sass/common/section-social.scss b/sass/common/section-social.scss new file mode 100644 index 00000000..f96c279f --- /dev/null +++ b/sass/common/section-social.scss @@ -0,0 +1,56 @@ +@import "../variables/media"; + +.section-social { + margin-bottom: var(--container-mob-section); + @media (max-width: $media-md) { + margin-bottom: 40rem; + } + &__row { + display: grid; + grid-template-columns: repeat(10, 1fr); + justify-content: center; + gap: 22rem; + @media (max-width: $media-md) { + gap: 6rem; + align-items: center; + grid-template-columns: repeat(5, 1fr); + } + } + + &__title { + color: var(--black-white); + text-align: center; + margin-bottom: 24rem; + @media (max-width: $media-md) { + margin-bottom: 20rem; + } + } + + &__item { + width: 59px; + height: 59px; + border: 2rem solid var(--black-white); + padding: 13rem; + border-radius: 6rem; + display: flex; + align-items: center; + justify-content: center; + margin: 0 auto; + + svg { + color: var(--black-white); + } + + a { + display: flex; + } + + @media (max-width: $media-md) { + + border: 1rem solid var(--black-white); + svg { + + } + } + } +} \ No newline at end of file diff --git a/sass/main.scss b/sass/main.scss index 80f775e6..0ac507f3 100644 --- a/sass/main.scss +++ b/sass/main.scss @@ -15,6 +15,7 @@ @import "./common/bred-crum"; @import "./common/support-block"; @import "./common/search"; +@import "./common/section-social"; // Component Style @import "./component/lang-switcher"; diff --git a/sass/pages/community.scss b/sass/pages/community.scss index 18f23df5..ae313b3d 100644 --- a/sass/pages/community.scss +++ b/sass/pages/community.scss @@ -61,55 +61,7 @@ } } -.section-social { - margin-bottom: var(--container-mob-section); - &__row { - display: flex; - justify-content: center; - gap: 22rem; - @media (max-width: $media-md) { - gap: 6rem; - } - } - - &__title { - color: var(--black-white); - text-align: center; - margin-bottom: 24rem; - @media (max-width: $media-md) { - margin-bottom: 20rem; - } - } - - &__item { - width: 59px; - height: 59px; - border: 2rem solid var(--black-white); - padding: 13rem; - border-radius: 6rem; - display: flex; - align-items: center; - justify-content: center; - - svg { - color: var(--black-white); - } - - a { - display: flex; - } - - @media (max-width: $media-md) { - width: 23px; - height: 23px; - svg { - width: 18px; - height: 18px; - } - } - } -} .donate { background-color: var(--bg-green); diff --git a/sass/pages/faq-page.scss b/sass/pages/faq-page.scss index 272108f7..2f1982fc 100644 --- a/sass/pages/faq-page.scss +++ b/sass/pages/faq-page.scss @@ -4,3 +4,41 @@ padding-top: 0; } +.faq-page-list { + &__title { + color: var(--black-white); + text-transform: uppercase; + margin-bottom: 20rem; + } + &__table { + border: 1rem solid var(--bg-green); + border-radius: 10rem; + margin-bottom: 20rem; + } + &__table-item { + padding: 30rem 20rem; + border-bottom: 1rem solid var(--bg-green); + &:last-child { + border-bottom: 1rem solid transparent; + } + @media (max-width: $media-md) { + padding: 20rem; + } + } + &__table-link { + color: var(--green-button); + } +} + +.faq-page-footer { + padding-top: 40rem; + margin-bottom: 60rem; + &__title{ + margin-bottom: 30rem; + text-align: center; + } + @media (max-width: $media-md) { + margin-bottom: 40rem; + } +} + diff --git a/sass/pages/home.scss b/sass/pages/home.scss index 1899e4be..0b5dd051 100644 --- a/sass/pages/home.scss +++ b/sass/pages/home.scss @@ -100,8 +100,11 @@ margin-bottom: 35rem; } } &__title { - margin-bottom: var(--mb-16); + margin-bottom: 20rem; color: var(--map-grey-text); + @media (max-width: $media-md) { + margin-bottom: var(--mb-16); + } } &__description { color: var(--map-grey-text); @@ -116,8 +119,8 @@ margin-bottom: 35rem; } &:nth-child(1) { width: 96rem; - left: calc(50% + 175rem); - top: calc(50% - 85rem); + left: calc(50% + 155rem); + top: calc(50% - 105rem); @media (max-width: $media-md) { width: calc(30rem + var(--icon-border)); left: calc(50% - -95rem); @@ -126,8 +129,8 @@ margin-bottom: 35rem; } &:nth-child(2) { width: 72rem; - left: calc(50% + 285rem); - top: calc(50% - -45rem); + left: calc(50% + 245rem); + top: calc(50% + 35rem); @media (max-width: $media-md) { width: calc(22rem + var(--icon-border)); left: calc(50% - -135rem); @@ -136,8 +139,8 @@ margin-bottom: 35rem; } &:nth-child(3) { width: 96rem; - left: calc(50% - 395rem); - top: calc(50% + -86rem); + left: calc(50% - 335rem); + top: calc(50% - 106rem); @media (max-width: $media-md) { width: calc(30rem + var(--icon-border)); left: calc(50% - 125rem); @@ -146,8 +149,8 @@ margin-bottom: 35rem; } &:nth-child(4) { width: 72rem; - left: calc(50% - 355rem); - top: calc(50% - -74rem); + left: calc(50% - 245rem); + top: calc(50% + 44rem); @media (max-width: $media-md) { width: calc(22rem + var(--icon-border)); left: calc(50% - 165rem); @@ -156,8 +159,8 @@ margin-bottom: 35rem; } &:nth-child(5) { width: 80rem; - left: calc(50% - -375rem); - top: calc(50% + 153rem); + left: calc(50% + 335rem); + top: calc(50% + 143rem); @media (max-width: $media-md) { width: calc(25rem + var(--icon-border)); left: calc(50% - -89rem); @@ -167,8 +170,8 @@ margin-bottom: 35rem; } &:nth-child(6) { width: 64rem; - left: calc(50% + 305rem); - top: calc(50% + -217rem); + left: calc(50% + 275rem); + top: calc(50% - 187rem); @media (max-width: $media-md) { width: calc(20rem + var(--icon-border)); left: calc(50% + 136rem); @@ -177,8 +180,8 @@ margin-bottom: 35rem; } &:nth-child(7) { width: 80rem; - left: calc(50% + -275rem); - top: calc(50% + 223rem); + left: calc(50% - 205rem); + top: calc(50% + 203rem); @media (max-width: $media-md) { width: calc(25rem + var(--icon-border)); left: calc(50% - 117rem); @@ -187,8 +190,8 @@ margin-bottom: 35rem; } &:nth-child(8) { width: 64rem; - left: calc(50% - 195rem); - top: calc(50% + -227rem); + left: calc(50% - 145rem); + top: calc(50% - 187rem); @media (max-width: $media-md) { width: calc(20rem + var(--icon-border)); left: calc(50% - 165rem); diff --git a/sass/pages/support.scss b/sass/pages/support.scss index bc7aef12..49dc0435 100644 --- a/sass/pages/support.scss +++ b/sass/pages/support.scss @@ -66,4 +66,46 @@ left: 17rem; } } +} + +.support-search { +padding: 60rem 16rem 20rem; + @media (max-width: $media-md) { + padding: 30rem 16rem; + } + + &__row { + background-color: var(--bg-green); + border-radius: 24rem; + padding: 50rem 16rem; + display: flex; + flex-direction: column; + align-items: center; + .search { + width: 100%; + max-width: 910rem; + + } + @media (max-width: $media-md) { + padding: 30rem 16rem; + } + } + &__title { + color: var(--black-white); + text-align: center; + } +} + + +.support-buttons { + padding: 30rem 0 80rem; + @media (max-width: $media-md) { + display: none; + } + &__row { + display: flex; + justify-content: center; + gap: 10rem; + flex-wrap: wrap; + } } \ No newline at end of file diff --git a/sass/pages/volunteering.scss b/sass/pages/volunteering.scss index e8429ac2..c0e78920 100644 --- a/sass/pages/volunteering.scss +++ b/sass/pages/volunteering.scss @@ -89,6 +89,7 @@ border-radius: 34rem; &:before { content: "+"; + transform: translateY(-1px); } } diff --git a/sass/variables/fonts.scss b/sass/variables/fonts.scss index cc69b20e..d546c8c6 100644 --- a/sass/variables/fonts.scss +++ b/sass/variables/fonts.scss @@ -6,13 +6,14 @@ --sub-fonst: 'Lato', sans-serif; --h1: 300 48rem/60rem var(--sub-fonst); + --h2-inter: 700 28rem/normal var(--main-font); --h1-inter: 700 36rem/46rem var(--main-font); --h1-sub: 400 24rem/32rem var(--main-font); - --h1-sub_v2: 500 24rem/32rem var(--main-font); + --h1-sub_v2: 200 24rem/32rem var(--main-font); --h3-boold: 700 24rem/32rem var(--main-font); --h3-normal: 600 24rem/32rem var(--main-font); --h4: 500 18rem/28rem var(--main-font); - --h5: 500 20rem/28rem var(--main-font); + --h5: 300 20rem/28rem var(--main-font); --h6: 500 30rem/36rem var(--main-font); --h6-bold: 700 30rem/36rem var(--main-font); --h6-date: 700 30rem/36rem var(--main-font); @@ -67,6 +68,9 @@ font: var(--h1); color: var(--black-white); } +.h2-inter { + font: var( --h2-inter); +} .h2-sub{ font: var(--h1-sub); color: var(--black-white); diff --git a/static/images/open-map/paul-green-3.png b/static/images/open-map/paul-green-3.png index 718237ad..e4143fd7 100644 Binary files a/static/images/open-map/paul-green-3.png and b/static/images/open-map/paul-green-3.png differ diff --git a/static/images/open-map/paul-green-4.png b/static/images/open-map/paul-green-4.png index 70ed43f6..b8504613 100644 Binary files a/static/images/open-map/paul-green-4.png and b/static/images/open-map/paul-green-4.png differ diff --git a/static/images/open-map/unsplash-4.png b/static/images/open-map/unsplash-4.png index e4143fd7..9323a0fc 100644 Binary files a/static/images/open-map/unsplash-4.png and b/static/images/open-map/unsplash-4.png differ diff --git a/static/images/sections/map-m-1.png b/static/images/sections/map-m-1.png index a8445336..f118c437 100644 Binary files a/static/images/sections/map-m-1.png and b/static/images/sections/map-m-1.png differ diff --git a/templates/community.html b/templates/community.html index edee036d..ca04313a 100644 --- a/templates/community.html +++ b/templates/community.html @@ -153,17 +153,7 @@
{{ page.extra.support_card_description_1 | safe }}
-{{ page.extra.support_card_description_2 | safe }}
-{{ page.extra.support_card_description_3 | safe }}
-