generated from goitacademy/vanilla-app-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from ElizabethBil/footer
update footer
- Loading branch information
Showing
2 changed files
with
45 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
font-size: 14px; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: 18px; | ||
line-height: 1.28; | ||
text-transform: uppercase; | ||
} | ||
|
||
|
@@ -28,14 +28,15 @@ | |
font-size: 44px; | ||
line-height: 1.22; | ||
letter-spacing: -0.03em; | ||
font-weight: 400; | ||
|
||
/* Box model */ | ||
width: 335px; | ||
margin-bottom: 80px; | ||
} | ||
|
||
.footer-section { | ||
background-image: url(../img/footer/bg-footer-mob.png); | ||
background-image: url(/img/footer/bg-footer-mob.png); | ||
background-repeat: no-repeat; | ||
background-position: bottom; | ||
padding-bottom: 216px; | ||
|
@@ -44,7 +45,7 @@ | |
|
||
@media screen and (min-width: 768px) { | ||
.footer-section { | ||
background-image: url(../img/footer/bg-footer-tab.png); | ||
background-image: url(/img/footer/bg-footer-tab.png); | ||
background-position: top right; | ||
padding-bottom: 0; | ||
background-size: 178px 369px; | ||
|
@@ -53,7 +54,6 @@ | |
display: flex; | ||
flex-wrap: nowrap; | ||
gap: 25px; | ||
margin-bottom: 80px; | ||
} | ||
|
||
.footer-list-item { | ||
|
@@ -68,6 +68,7 @@ | |
|
||
/* Box model */ | ||
width: 521px; | ||
margin-bottom: 0; | ||
} | ||
|
||
.footer-container { | ||
|
@@ -77,7 +78,7 @@ | |
|
||
@media screen and (min-width: 1280px) { | ||
.footer-section { | ||
background-image: url(../img/footer/bg-footer-1280.png); | ||
background-image: url(/img/footer/bg-footer-1280.png); | ||
background-position: top right; | ||
padding-bottom: 0; | ||
background-size: 336px 363px; | ||
|
@@ -97,4 +98,43 @@ | |
} | ||
|
||
@media screen and (min-width: 1440px) { | ||
.footer-section { | ||
background-image: url(/img/footer/bg-footer-1440.png); | ||
background-position: top right; | ||
padding-bottom: 0; | ||
background-size: 496px 363px; | ||
} | ||
} | ||
|
||
/* ##### Background image x2 ##### */ | ||
@media screen and (min-resolution: 192dpi) and (max-width: 767px), | ||
screen and (min-resolution: 2dppx) and (max-width: 767px), | ||
screen and (min-device-pixel-ratio: 2) and (max-width: 767px) { | ||
.collection-section { | ||
background-image: url(/img/footer/[email protected]); | ||
} | ||
} | ||
|
||
@media screen and (min-resolution: 192dpi) and (min-width: 768px), | ||
screen and (min-resolution: 2dppx) and (min-width: 768px), | ||
screen and (min-device-pixel-ratio: 2) and (min-width: 768px) { | ||
.collection-section { | ||
background-image: url(/img/footer/[email protected]); | ||
} | ||
} | ||
|
||
@media screen and (min-resolution: 192dpi) and (min-width: 1280px), | ||
screen and (min-resolution: 2dppx) and (min-width: 1280px), | ||
screen and (min-device-pixel-ratio: 2) and (min-width: 1280px) { | ||
.collection-section { | ||
background-image: url(/img/footer/[email protected]); | ||
} | ||
} | ||
|
||
@media screen and (min-resolution: 192dpi) and (min-width: 1440px), | ||
screen and (min-resolution: 2dppx) and (min-width: 1440px), | ||
screen and (min-device-pixel-ratio: 2) and (min-width: 1440px) { | ||
.collection-section { | ||
background-image: url(/img/footer/[email protected]); | ||
} | ||
} |
File renamed without changes