-
Notifications
You must be signed in to change notification settings - Fork 0
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
20 changed files
with
204 additions
and
69 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
3 changes: 3 additions & 0 deletions
3
blocks/carousel/__indicator-container/carousel__indicator-container.css
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.carousel__indicator-container { | ||
align-self: center; | ||
} |
This file was deleted.
Oops, something went wrong.
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
22 changes: 22 additions & 0 deletions
22
blocks/carousel/__nav/_type/carousel__nav_type_statistics.css
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.carousel__nav_type_statistics { | ||
border-bottom: 1.7px solid #223d46; | ||
padding-bottom: 60px; | ||
} | ||
|
||
@media screen and (max-width: 1024px) { | ||
.carousel__nav_type_statistics { | ||
padding-bottom: 50px; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 768px) { | ||
.carousel__nav_type_statistics { | ||
padding-bottom: 40px; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 425px) { | ||
.carousel__nav_type_statistics { | ||
padding-bottom: 30px; | ||
} | ||
} |
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
19 changes: 19 additions & 0 deletions
19
blocks/carousel/__slide/_type/carousel__slide_type_about.css
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,4 +1,23 @@ | ||
.carousel__slide_type_about { | ||
width: 1200px; | ||
height: 660px; | ||
margin: 0; | ||
} | ||
|
||
@media screen and (max-width: 1024px) { | ||
.carousel__slide_type_about { | ||
height: 520px; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 768px) { | ||
.carousel__slide_type_about { | ||
height: 390px; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 425px) { | ||
.carousel__slide_type_about { | ||
height: 180px; | ||
} | ||
} |
25 changes: 24 additions & 1 deletion
25
blocks/carousel/__slide/_type/carousel__slide_type_statistics.css
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,28 @@ | ||
.carousel__slide_type_statistics { | ||
max-width: 382px; | ||
width: 382px; | ||
height: 210px; | ||
margin-right: 27px; | ||
} | ||
|
||
@media screen and (max-width: 1024px) { | ||
.carousel__slide_type_statistics { | ||
height: 166px; | ||
margin-right: 19px; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 768px) { | ||
.carousel__slide_type_statistics { | ||
height: 188px; | ||
margin-right: 22px; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 425px) { | ||
.carousel__slide_type_statistics { | ||
margin: 0; | ||
border-left: 1px solid white; | ||
border-right: 1px solid white; | ||
width: 400px; | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -5,7 +5,6 @@ | |
|
||
.hello-there { | ||
padding: 50px 16px 0; | ||
border-top: 1.7px solid #223d46; | ||
} | ||
|
||
@media (min-width: 768px) { | ||
|
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,17 +1,23 @@ | ||
.statistics { | ||
padding: 100px 40px 0; | ||
padding-bottom: 60px; | ||
max-width: 1200px; | ||
margin: auto; | ||
} | ||
|
||
@media screen and (max-width: 1024px) { | ||
.statistics { | ||
padding-top: 84px; | ||
padding-bottom: 50px; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 768px) { | ||
.statistics { | ||
padding: 68px 30px 40px; | ||
padding: 68px 30px 0; | ||
} | ||
} | ||
|
||
@media screen and (max-width: 425px) { | ||
.statistics { | ||
padding: 50px 16px 0; | ||
} | ||
} |
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
Oops, something went wrong.