From 995a0d89a2331b9d78397baf32aec178fcb500a9 Mon Sep 17 00:00:00 2001 From: Thomas Smith <49042513+tsmitty11@users.noreply.github.com> Date: Tue, 13 Sep 2022 13:40:19 -0400 Subject: [PATCH] Moved footer styling to main CSS --- src/layouts/partials/footer.html | 43 -------------------------------- src/static/css/style.css | 40 +++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 43 deletions(-) diff --git a/src/layouts/partials/footer.html b/src/layouts/partials/footer.html index 632e943..f8280cd 100644 --- a/src/layouts/partials/footer.html +++ b/src/layouts/partials/footer.html @@ -34,49 +34,6 @@ - - diff --git a/src/static/css/style.css b/src/static/css/style.css index 832810d..de64860 100644 --- a/src/static/css/style.css +++ b/src/static/css/style.css @@ -280,3 +280,43 @@ hr{ .detail-btn{ float:right; } + +/* Footer Styling */ + +.footer-email{ + padding: 35px 75px; + background: none; + border: none; +} + +.social-box{ + border-radius: 0px !important; + border: 2px solid #949494; + background-color: none; +} + +.list-group{ + border-radius: 0px !important; +} + +.list-group-item{ + background-color: #1a1a1a !important; + padding: 20px; + font-size: 28px; + color: #fff; + font-family: "pp-neue-machina", sans-serif; + text-transform: uppercase; + border-bottom: 2px solid #949494; + transition: 0.2s ease-in-out; +} + +.list-group-item:hover{ + padding-left: 40px; + background-color: #00ffd0 !important; + box-shadow: inset 0px 0px 0px 7px #1a1a1a !important; + color: #1a1a1a !important; +} + +.footer-content{ + padding-right: 100px; +}