From 7993e03fd948f69782609d59f76ca59fa6d73847 Mon Sep 17 00:00:00 2001 From: Mehedi Hasan Munna Date: Sun, 11 Aug 2024 04:46:27 +0600 Subject: [PATCH] footer added and final push --- CSS/medium-device-responsive.css | 4 +++ CSS/small-device-responsive.css | 12 ++++++- CSS/styles.css | 56 ++++++++++++++++++++++++++------ index.html | 19 ++++++++++- 4 files changed, 79 insertions(+), 12 deletions(-) diff --git a/CSS/medium-device-responsive.css b/CSS/medium-device-responsive.css index 8f992a1..a3a38e4 100644 --- a/CSS/medium-device-responsive.css +++ b/CSS/medium-device-responsive.css @@ -31,4 +31,8 @@ padding: 20px; gap: 100px; } + .footer-img img { + width: 95%; + margin: 0 auto; + } } \ No newline at end of file diff --git a/CSS/small-device-responsive.css b/CSS/small-device-responsive.css index a5c8a77..8b0438e 100644 --- a/CSS/small-device-responsive.css +++ b/CSS/small-device-responsive.css @@ -34,8 +34,18 @@ .player-card { width: 100%; } - .highlight-container{ + + .highlight-container { padding: 20px; gap: 50px; } + + footer { + margin-top: 50px; + } + + .footer-img img { + width: 90%; + margin: 0 auto; + } } \ No newline at end of file diff --git a/CSS/styles.css b/CSS/styles.css index 823827e..1863266 100644 --- a/CSS/styles.css +++ b/CSS/styles.css @@ -3,7 +3,6 @@ body { font-family: "Poppins", sans-serif; - border: 2px solid red; max-width: 1440px; margin: 0 auto; } @@ -15,6 +14,17 @@ body { padding: 0; } +.btn { + background: rgb(224, 44, 109); + color: rgb(255, 255, 255); + font-size: 1rem; + font-weight: 500; + padding: 10px 24px; + border: none; + border-radius: 5px; + cursor: pointer; +} + #Player, #highlight { margin-top: 100px; @@ -73,6 +83,7 @@ main { padding: 10px 24px; border: none; border-radius: 5px; + cursor: pointer; } /* Banner Styles */ @@ -94,15 +105,7 @@ main { margin-bottom: 27px; } -.btn { - background: rgb(224, 44, 109); - color: rgb(255, 255, 255); - font-size: 1rem; - font-weight: 500; - padding: 10px 24px; - border: none; - border-radius: 5px; -} + .banner-img { max-width: 555px; @@ -185,4 +188,37 @@ main { .highlight-img img { width: 100%; height: 100%; +} + +/* footer Styles */ +footer { + max-width: 1440px; + margin: 0 auto; + margin-top: 100px; + padding-top: 30px; + padding-bottom: 30px; +} + +.footer-items { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.footer-links img { + width: 50%; +} + +.footer-links { + display: flex; + justify-content: center; + align-items: center; + margin-top: 20px; + margin-bottom: 20px; +} + +.copyright { + color: rgb(0, 0, 0); + font-size: 1.1rem; } \ No newline at end of file diff --git a/index.html b/index.html index 554d882..286432f 100644 --- a/index.html +++ b/index.html @@ -24,7 +24,7 @@
  • Clubs
  • World Cup 2023
  • Upcoming Matches
  • -
  • Contact
  • +
  • Contact
  • @@ -143,6 +143,23 @@

    All Highlights

    + + \ No newline at end of file