diff --git a/assets/css/styles.css b/assets/css/styles.css index be32e06..d53fc73 100644 --- a/assets/css/styles.css +++ b/assets/css/styles.css @@ -416,9 +416,12 @@ img.menu__img { } /*========== FOOTER ==========*/ .footer__container{ - grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); - row-gap: 2rem; + grid-template-columns: 2fr 1fr 2fr; + width: 100vw; + height: 300%; + gap: 0.3rem; } + .footer__logo{ font-size: var(--h3-font-size); color: var(--first-color); @@ -436,18 +439,82 @@ img.menu__img { color: var(--title-color); margin-right: var(--mb-2); } + +#services-div{ + display: grid; + grid-template-columns: 1fr 2fr; + background-color: #069C54; + align-items: flex-start; + padding-top: 10%; + padding-bottom: 10%; +} +#footer__title__services{ + display: flex; + justify-content: center; + /* text-align: center; */ + align-items: center; + height: 100%; + width: 100%; +} +#info-div{ + display: grid; + grid-template-columns: 1fr 2fr; + background-color: #18b3be; + align-items: flex-start; + padding-top: 15%; + padding-bottom: 10%; +} +#footer__title__info{ + display: flex; + justify-content: center; + /* text-align: center; */ + align-items: center; + height: 100%; + width: 100%; +} +#address-div{ + display: grid; + grid-template-columns: 1fr 2fr 2fr; + background-color: #ff3232; + align-items: flex-start; + padding-top: 10%; + padding-bottom: 10%; +} +#footer__title__address{ + display: flex; + justify-content: center; + /* text-align: center; */ + align-items: center; + height: 100%; + width: 100%; +} + +#socials{ + display: flex; + justify-content: end; + /* text-align: center; */ + align-items: end; + align-content: end; + height: 100%; + width: 100%; +} +#address-list{ + color: white; +} + + .footer__title{ font-size: var(--h2-font-size); - color: var(--title-color); - margin-bottom: var(--mb-2); + color: #F1F3F2; + transform: rotate(-90deg); } .footer__link{ display: inline-block; - color: var(--text-color); + color:#F1F3F2; margin-bottom: var(--mb-1); } .footer__link:hover{ - color: var(--first-color); + color: yellow; } .footer__copy{ text-align: center; diff --git a/index.html b/index.html index d8c21d5..b9b45d3 100644 --- a/index.html +++ b/index.html @@ -185,20 +185,17 @@