Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Footer update #35

Merged
merged 3 commits into from
Jul 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions blocks/footer/__text/footer__text.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,14 @@
line-height: 16px;
}
}

@media screen and (max-width: 320px) {
.footer__text {
font-size: 14px;
line-height: 14px;
margin-bottom: 20px;
}
.footer__text:last-child {
margin-bottom: 0;
}
}
16 changes: 15 additions & 1 deletion blocks/footer/footer.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
@import url(./__text/footer__text.css);

.footer {
padding: 100px 40px 40px 40px;
padding: 100px 120px 40px 120px;
display: flex;
justify-content: space-between;
}

@media screen and (max-width: 1280px) {
.footer {
padding: 100px 40px 40px 40px;
}
}

@media screen and (max-width: 1024px) {
.footer {
padding: 84px 40px 40px 40px;
Expand All @@ -17,3 +23,11 @@
padding: 72px 30px 30px 30px;
}
}

@media screen and (max-width: 320px) {
.footer {
flex-direction: column;
align-items: center;
padding: 50px 16px 30px 16px;
}
}