From ac360b8a1c766439b0c1ecaabc0e287665125be1 Mon Sep 17 00:00:00 2001 From: ColinB19 Date: Mon, 9 Sep 2024 15:31:16 -0700 Subject: [PATCH] fixing footer --- _includes/footer.html | 12 ++++++++++-- assets/css/main.css | 39 ++++++++++++++++++++++++++++++++++++++- 2 files changed, 48 insertions(+), 3 deletions(-) diff --git a/_includes/footer.html b/_includes/footer.html index 22dc2d771a8..b9c173c5574 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,6 +1,14 @@ diff --git a/assets/css/main.css b/assets/css/main.css index 552ba4c0cd5..b5601f278f6 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -5224,4 +5224,41 @@ body { pre { overflow: auto; padding: 10px; - } \ No newline at end of file + } + +/*footer icons*/ + .footer-icons { + text-align: center; + margin-bottom: 15px; +} + +.footer-icons .icon { + height: 20px; + width: 20px; + padding: 10px; + font-size: 20px; + border: 1px solid #fff; + border-radius: 50%; + transition: all 0.7s; + margin: 5px; +} + +.footer-icons .icon:hover { + color: #1a222c; + background: #fff; +} + +.footer p { + text-align: center; + margin: 5px 0; +} + +.footer a.link { + text-decoration: none; + color: #fff; + transition: color 0.3s ease; +} + +.footer a.link:hover { + color: #ddd; +} \ No newline at end of file