From c8d0597d8a5b52031a7a7a952a5ba7d246ec0044 Mon Sep 17 00:00:00 2001 From: Revanth Date: Fri, 23 Sep 2022 20:20:08 +0530 Subject: [PATCH] latest commit 23/9/22 --- css/style.css | 39 ++++++++++++++++++++++ index.html | 24 +++++++++++++ sass/abstracts/_variables.scss | 1 + sass/layouts/_footer.scss | 61 ++++++++++++++++++++++++++++++++++ sass/main.scss | 1 + 5 files changed, 126 insertions(+) create mode 100644 sass/layouts/_footer.scss diff --git a/css/style.css b/css/style.css index 9687240..327e119 100644 --- a/css/style.css +++ b/css/style.css @@ -421,6 +421,45 @@ body { .feature-box:hover { transform: translateY(-1.5rem) scale(1.05); } +.footer { + margin-top: -30vh; + background-color: #333; + font-size: 1.4rem; + padding: 10rem 0; } + .footer__logo-box { + text-align: center; + margin-bottom: 10rem; } + .footer__logo { + width: 30rem; + height: auto; } + .footer__list { + list-style: none; } + .footer__items { + display: inline-block; + padding: 4px; } + .footer__items:not(:last-child) { + margin-right: 1.2rem; } + .footer__navigation { + border-top: solid 1px #eee; + padding: 8px 0; + display: inline-block; } + .footer__link:link, .footer__link:visited { + text-transform: uppercase; + text-decoration: none; + color: #edebeb; + background-color: #333; + display: inline-block; + transition: all 0.2s; + padding: 2px 6px; } + .footer__link:hover, .footer__link:active { + color: #55c57a; + box-shadow: 0rem 0.5rem 1.5rem rgba(126, 213, 111, 0.4); + transform: scale(1.3); + transition: all 0.2s; + border-radius: 20px; } + .footer__copyright { + text-align: right; } + .header { height: 95vh; /* 95 percent of the viewport size. Always use vh to make a website as responsive as possible. Because this changes with the size of the screen. */ diff --git a/index.html b/index.html index 4c0d750..1796f99 100644 --- a/index.html +++ b/index.html @@ -221,6 +221,30 @@

+ +