-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
147 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,51 @@ | ||
.root { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
align-self: stretch; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
align-self: stretch; | ||
} | ||
|
||
.header { | ||
display: flex; | ||
justify-content: space-between; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: baseline; | ||
} | ||
|
||
.title { | ||
font-size: var(--heading-extra-large-font-size); | ||
line-height: var(--heading-extra-large-line-height); | ||
font-size: var(--heading-extra-large-font-size); | ||
line-height: var(--heading-extra-large-line-height); | ||
color: var(--text-emphasized); | ||
} | ||
|
||
.viewAllCitiesButton { | ||
color: var(--link); | ||
} | ||
|
||
.list { | ||
margin: 0; | ||
padding: 0; | ||
list-style-type: none; | ||
column-count: 4; | ||
column-gap: 20px; | ||
margin: 0; | ||
padding: 0; | ||
list-style-type: none; | ||
column-count: 4; | ||
column-gap: 20px; | ||
} | ||
|
||
.listItem { | ||
padding-bottom: 12px; | ||
} | ||
|
||
.content { | ||
display: flex; | ||
flex-direction: column; | ||
max-width: 1200px; | ||
padding: 80px 32px; | ||
width: 100%; | ||
row-gap: 48px; | ||
} | ||
display: flex; | ||
flex-direction: column; | ||
max-width: 1200px; | ||
padding: 80px 32px; | ||
width: 100%; | ||
row-gap: 48px; | ||
} | ||
|
||
.countrySelect { | ||
color: currentColor; | ||
text-decoration: underline; | ||
&:hover { | ||
color: #eca828; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.root { | ||
color: 'currentColor'; | ||
color: currentColor; | ||
font-size: inherit; | ||
line-height: inherit; | ||
|
||
|
37 changes: 19 additions & 18 deletions
37
src/components/more-than-delivery-section/more-than-delivery-section.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,29 @@ | ||
.root { | ||
display: flex; | ||
justify-content: center; | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.title { | ||
font-size: var(--heading-extra-large-font-size); | ||
line-height: var(--heading-extra-large-line-height); | ||
font-size: var(--heading-extra-large-font-size); | ||
line-height: var(--heading-extra-large-line-height); | ||
color: var(--text-emphasized); | ||
} | ||
|
||
.content { | ||
text-align: center; | ||
display: flex; | ||
flex-direction: column; | ||
row-gap: 32px; | ||
padding-top: 80px; | ||
padding-bottom: 120px; | ||
padding-right: 32px; | ||
padding-left: 32px; | ||
min-height: 560px; | ||
justify-content: center; | ||
max-width: 800px; | ||
text-align: center; | ||
display: flex; | ||
flex-direction: column; | ||
row-gap: 32px; | ||
padding-top: 80px; | ||
padding-bottom: 160px; | ||
padding-right: 32px; | ||
padding-left: 32px; | ||
min-height: 560px; | ||
justify-content: center; | ||
max-width: 800px; | ||
} | ||
|
||
.text { | ||
font-size: var(--text-extra-large-font-size); | ||
line-height: var(--text-extra-large-line-height); | ||
} | ||
font-size: var(--text-extra-large-font-size); | ||
line-height: var(--text-extra-large-line-height); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,21 @@ | ||
.root { | ||
display: grid; | ||
grid-template-rows: min-content 1fr min-content; | ||
text-align: center; | ||
background-color: var(--background-white); | ||
box-shadow: 0px 24px 48px -24px rgba(0, 0, 0, 0.15), 0px 80px 80px 0px rgba(0, 0, 0, 0.05); | ||
display: grid; | ||
grid-template-rows: min-content 1fr; | ||
text-align: center; | ||
background-color: var(--background-white); | ||
box-shadow: | ||
0px 24px 48px -24px rgba(0, 0, 0, 0.15), | ||
0px 80px 80px 0px rgba(0, 0, 0, 0.05); | ||
border-radius: 12px; | ||
overflow: hidden; | ||
} | ||
|
||
.image { | ||
aspect-ratio: 3/2; | ||
background-size: cover; | ||
background-position: center; | ||
aspect-ratio: 3/2; | ||
background-size: cover; | ||
background-position: center; | ||
} | ||
|
||
.title { | ||
margin-top: 32px; | ||
margin-bottom: 16px; | ||
margin-right: 32px; | ||
margin-left: 32px; | ||
padding: 32px; | ||
} | ||
|
||
.link { | ||
margin-bottom: 32px; | ||
align-self: end; | ||
margin-right: 32px; | ||
margin-left: 32px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 19 additions & 18 deletions
37
src/components/partners-section/partners-section.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
.root { | ||
display: flex; | ||
justify-content: center; | ||
background: var(--background-light-grey); | ||
display: flex; | ||
justify-content: center; | ||
background: var(--background-light-grey); | ||
} | ||
|
||
.content { | ||
max-width: 1200px; | ||
display: grid; | ||
grid-template-columns: 1fr 1fr 1fr; | ||
column-gap: 16px; | ||
padding-top: 80px; | ||
padding-bottom: 80px; | ||
padding-right: 32px; | ||
padding-left: 32px; | ||
row-gap: 40px; | ||
max-width: 1200px; | ||
display: grid; | ||
grid-template-columns: 1fr 1fr 1fr; | ||
column-gap: 16px; | ||
padding-top: 80px; | ||
padding-bottom: 80px; | ||
padding-right: 32px; | ||
padding-left: 32px; | ||
row-gap: 40px; | ||
} | ||
|
||
.title { | ||
font-size: var(--heading-extra-large-font-size); | ||
line-height: var(--heading-extra-large-line-height); | ||
grid-column-start: 1; | ||
grid-column-end: 4; | ||
text-align: center; | ||
} | ||
font-size: var(--heading-extra-large-font-size); | ||
line-height: var(--heading-extra-large-line-height); | ||
grid-column-start: 1; | ||
grid-column-end: 4; | ||
text-align: center; | ||
color: var(--text-emphasized); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 40 additions & 31 deletions
71
src/components/what-is-section/what-is-section.module.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,59 @@ | ||
.root { | ||
background-color: var(--background-light-grey); | ||
padding-bottom: 80px; | ||
padding-top: 80px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
padding-right: 32px; | ||
padding-left: 32px; | ||
background-color: transparent; | ||
padding-bottom: 80px; | ||
padding-top: 80px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
padding-right: 32px; | ||
padding-left: 32px; | ||
background-image: linear-gradient( | ||
180deg, | ||
var(--background-light-grey) 0%, | ||
var(--background-white) 100% | ||
); | ||
} | ||
|
||
.card { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr; | ||
overflow: hidden; | ||
max-width: 1200px; | ||
min-height: 600px; | ||
border-radius: 12px; | ||
background-color: var(--background-white); | ||
box-shadow: 0px 24px 48px -24px rgba(0, 0, 0, 0.15), 0px 80px 80px 0px rgba(0, 0, 0, 0.05); | ||
display: grid; | ||
grid-template-columns: 1fr 1fr; | ||
overflow: hidden; | ||
max-width: 1200px; | ||
min-height: 600px; | ||
border-radius: 12px; | ||
background-color: var(--background-white); | ||
box-shadow: | ||
0px 24px 48px -24px rgba(0, 0, 0, 0.15), | ||
0px 80px 80px 0px rgba(0, 0, 0, 0.05); | ||
} | ||
|
||
.image { | ||
background: center / cover no-repeat url("https://static.wixstatic.com/media/f09b13_4b8cabf6e2cd464287c1ccf0e4c1a5fc~mv2.jpg"); | ||
|
||
background: center / cover no-repeat | ||
url('https://static.wixstatic.com/media/f09b13_4b8cabf6e2cd464287c1ccf0e4c1a5fc~mv2.jpg'); | ||
} | ||
|
||
.content { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
padding: 80px; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
padding: 80px; | ||
} | ||
|
||
.title { | ||
display: block; | ||
display: block; | ||
} | ||
|
||
.title { | ||
font-size: var(--heading-small-font-size); | ||
line-height: var(--heading-small-line-height); | ||
font-size: var(--heading-small-font-size); | ||
line-height: var(--heading-small-line-height); | ||
color: var(--text-emphasized); | ||
} | ||
|
||
.emphasizedText { | ||
font-size: var(--heading-extra-large-font-size); | ||
line-height: var(--heading-extra-large-line-height); | ||
font-family: Poppins, system-ui, sans-serif; | ||
margin-top: 16px; | ||
margin-bottom: 32px; | ||
} | ||
font-size: var(--heading-extra-large-font-size); | ||
line-height: var(--heading-extra-large-line-height); | ||
font-family: Poppins, system-ui, sans-serif; | ||
margin-top: 16px; | ||
margin-bottom: 32px; | ||
color: var(--text-emphasized); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,10 @@ p { | |
margin: 0; | ||
} | ||
|
||
img{ | ||
vertical-align: middle; | ||
} | ||
|
||
*, | ||
*:before, | ||
*:after { | ||
|
Oops, something went wrong.