Skip to content

Commit

Permalink
Merge pull request #43 from ElizabethBil/footer
Browse files Browse the repository at this point in the history
update css
  • Loading branch information
ElizabethBil authored Oct 4, 2023
2 parents d71a9f3 + 8e067b8 commit 00a14c8
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion src/css/footer.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
.footer-section {
padding-top: 40px;
border-top: 1px solid rgba(252, 249, 249, 0.1);
}

.footer-list {
display: flex;
flex-wrap: wrap;
Expand All @@ -21,15 +26,29 @@
.footer-title {
color: var(--white, #fcf9f9);
font-size: 44px;
line-height: 1.22em;
line-height: 1.22;
letter-spacing: -0.03em;

/* Box model */
width: 335px;
margin-bottom: 80px;
}

.footer-section {
background-image: url(../img/footer/bg-footer-mob.png);
background-repeat: no-repeat;
background-position: bottom;
padding-bottom: 216px;
background-size: 375px 212px;
}

@media screen and (min-width: 768px) {
.footer-section {
background-image: url(../img/footer/bg-footer-tab.png);
background-position: top right;
padding-bottom: 0;
background-size: 178px 369px;
}
.footer-list {
display: flex;
flex-wrap: nowrap;
Expand All @@ -43,6 +62,10 @@
}

.footer-title {
/* typography */
font-size: 54px;
line-height: 1.18;

/* Box model */
width: 521px;
}
Expand All @@ -53,11 +76,21 @@
}

@media screen and (min-width: 1280px) {
.footer-section {
background-image: url(../img/footer/bg-footer-1280.png);
background-position: top right;
padding-bottom: 0;
background-size: 336px 363px;
}

.footer-list {
margin-bottom: 117px;
}

.footer-title {
/* typography */
font-size: 64px;
line-height: 1.15;
/* Box model */
width: 754px;
}
Expand Down

0 comments on commit 00a14c8

Please sign in to comment.