From aac50992a2531d557f891bb9c3c485cad2557937 Mon Sep 17 00:00:00 2001 From: devartes Date: Fri, 7 Oct 2022 18:30:26 -0300 Subject: [PATCH] adicionando footer --- css/layout/footer.css | 36 ++++++++++++++++++++++++++++++++++++ css/layout/main.css | 2 -- index.html | 10 +++++++++- 3 files changed, 45 insertions(+), 3 deletions(-) diff --git a/css/layout/footer.css b/css/layout/footer.css index e69de29..bc8069a 100644 --- a/css/layout/footer.css +++ b/css/layout/footer.css @@ -0,0 +1,36 @@ +footer { + width: 100%; + height: 128px; + left: 0px; + top: 435px; + bottom: 0; + background: #000000; + position: relative; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; +} + +footer .social-media { + display: flex; + justify-content: space-between; + align-items: center; + margin-bottom: 16px; + width: 104px; +} + +footer span { + font-weight: 400; + font-size: 10px; + line-height: 12px; + text-transform: uppercase; + color: #BDBDBD; +} + +@media screen and (max-width: 415px) { + footer span { + width: 261px; + text-align: center; + } +} \ No newline at end of file diff --git a/css/layout/main.css b/css/layout/main.css index fefb109..2de55a0 100644 --- a/css/layout/main.css +++ b/css/layout/main.css @@ -117,7 +117,6 @@ height: 596px; margin: auto; top: 242px; - bottom: 179px; } .content-text-final img { @@ -233,7 +232,6 @@ font-weight: 400; font-size: 16px; line-height: 24px; - bottom: 135px; } } diff --git a/index.html b/index.html index 88b284d..47714a7 100644 --- a/index.html +++ b/index.html @@ -89,6 +89,14 @@ - + \ No newline at end of file -- 2.34.1