From 7be3d2209cda659c62b13f1e7ba09e628632e91d Mon Sep 17 00:00:00 2001
From: Thomas Smith <49042513+tsmitty11@users.noreply.github.com>
Date: Wed, 21 Sep 2022 18:24:16 -0400
Subject: [PATCH] Moved footer css over to separate file.
---
src/layouts/partials/head.html | 1 +
src/static/css/footer.css | 72 +++++++++++++++++++++++++++++++++
src/static/css/style.css | 73 ----------------------------------
3 files changed, 73 insertions(+), 73 deletions(-)
create mode 100644 src/static/css/footer.css
diff --git a/src/layouts/partials/head.html b/src/layouts/partials/head.html
index a79484b..c289063 100644
--- a/src/layouts/partials/head.html
+++ b/src/layouts/partials/head.html
@@ -52,6 +52,7 @@
+
diff --git a/src/static/css/footer.css b/src/static/css/footer.css
new file mode 100644
index 0000000..5eb54a4
--- /dev/null
+++ b/src/static/css/footer.css
@@ -0,0 +1,72 @@
+/* Footer Styling */
+
+.footer-email{
+ font-family: "pp-neue-machina", sans-serif;
+ text-transform: uppercase;
+ font-size: 2.121vw;
+ line-height: 2.121vw;
+ padding: 1.953vw 0vw;
+ background: none;
+ border: none;
+}
+
+.footer-email:focus{
+ background-color: #1a1a1a;
+ color: #fff;
+ outline: none !important;
+ box-shadow: none !important;
+}
+
+.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: 1.116vw;
+ font-size: 1.562vw;
+ 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: 2.232vw;
+ background-color: #00ffd0 !important;
+ box-shadow: inset 0vw 0vw 0vw 0.391vw #1a1a1a !important;
+ color: #1a1a1a !important;
+}
+
+.footer-content{
+ padding-right: 5.580vw;
+}
+
+.email-btn{
+ width: 16%;
+ border-left: 2px solid #949494;
+ border-right: none !important;
+ border-radius: 0px;
+ font-family: "pp-neue-machina", sans-serif;
+ text-transform: uppercase;
+ font-size: 2.121vw;
+}
+
+.email-btn:hover{
+ background-color: #00ffd0;
+ color: #1a1a1a;
+ box-shadow: inset 0vw 0vw 0vw 0.391vw #1a1a1a !important;
+}
+
+.social-icon{
+ margin-right: 1.116vw !important;
+ position: relative;
+ top: 0.167vw;
+}
diff --git a/src/static/css/style.css b/src/static/css/style.css
index 8fbacf0..9086629 100644
--- a/src/static/css/style.css
+++ b/src/static/css/style.css
@@ -135,76 +135,3 @@ hr{
background-repeat: repeat-y;
background-size: cover;
}
-
-/* Footer Styling */
-
-.footer-email{
- font-family: "pp-neue-machina", sans-serif;
- text-transform: uppercase;
- font-size: 2.121vw;
- line-height: 2.121vw;
- padding: 1.953vw 0vw;
- background: none;
- border: none;
-}
-
-.footer-email:focus{
- background-color: #1a1a1a;
- color: #fff;
- outline: none !important;
- box-shadow: none !important;
-}
-
-.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: 1.116vw;
- font-size: 1.562vw;
- 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: 2.232vw;
- background-color: #00ffd0 !important;
- box-shadow: inset 0vw 0vw 0vw 0.391vw #1a1a1a !important;
- color: #1a1a1a !important;
-}
-
-.footer-content{
- padding-right: 5.580vw;
-}
-
-.email-btn{
- width: 16%;
- border-left: 2px solid #949494;
- border-right: none !important;
- border-radius: 0px;
- font-family: "pp-neue-machina", sans-serif;
- text-transform: uppercase;
- font-size: 2.121vw;
-}
-
-.email-btn:hover{
- background-color: #00ffd0;
- color: #1a1a1a;
- box-shadow: inset 0vw 0vw 0vw 0.391vw #1a1a1a !important;
-}
-
-.social-icon{
- margin-right: 1.116vw !important;
- position: relative;
- top: 0.167vw;
-}