New stylesheets added for club pages

This commit is contained in:
Lucas Patenaude
2024-04-14 14:25:56 -06:00
parent a137a3f73d
commit f6f75075e0
8 changed files with 92 additions and 12 deletions

View File

@@ -1,19 +1,21 @@
<div class="container" id="league-page-body">
<!-- Container for all league information (logo, name, country, etc. ) <- top 100px -->
<div class="container" id="league-information-container">
<div class="container" id="club-page-body">
<!-- Container for all club information (logo, name, country, etc. ) <- top 100px -->
<div class="container" id="club-information-container">
<img id="club-logo" src="{{club.crest}}" alt="{{club.name}} Emblem">
<h1 id="club-title">{{club.name}}</h2>
<img id="club-flag" src="{{club.area.club_flag}}" alt="{{club.clubData.name}} Flag">
</div>
<!-- Container to display all stats for league <- bottom rest of the container -->
<div class="container" id="league-stats-container">
<!-- Container to display all stats for club <- bottom rest of the container -->
<div class="container" id="club-stats-container">
<!-- Container to display league table <- split 50% -->
<div class="container" id="league-table-container">
<!-- Container to display club table <- split 50% -->
<div class="container" id="club-players-container">
</div>
<!-- Container to display top scorers for league <- Split 50% -->
<!-- Container to display top scorers for club <- Split 50% -->
<div class="container" id="top-scorers-container">
</div>

View File

@@ -22,9 +22,14 @@
<link rel="stylesheet" type="text/css" href="/css/homepage/homepage.css">
<!-- League Page Stylesheets -->
<link rel="stylesheet" type="text/css" href="/css/league-page/league-page.css">
<link rel="stylesheet" type="text/css" href="/css/league-page/league-table.css">
<link rel="stylesheet" type="text/css" href="/css/league-page/top-scorers.css">
<link rel="stylesheet" type="text/css" href="/css/league-pages/league-page.css">
<link rel="stylesheet" type="text/css" href="/css/league-pages/league-table.css">
<link rel="stylesheet" type="text/css" href="/css/league-pages/top-scorers.css">
<!-- League Page Stylesheets -->
<link rel="stylesheet" type="text/css" href="/css/club-pages/club-page.css">
<link rel="stylesheet" type="text/css" href="/css/club-pages/players-table.css">
<link rel="stylesheet" type="text/css" href="/css/club-pages/club-top-scorers.css">
<title>Group 6 Final Project</title>