Reversion of styles on leagues page

This commit is contained in:
Lucas Patenaude
2024-04-15 16:02:19 -06:00
parent 0bd33dcd1a
commit 30f005300c
25 changed files with 29 additions and 262 deletions

View File

@@ -24,10 +24,6 @@
padding: 30px;
}
#top-scorers-container {
padding : 30px
}
#club-information-container {
height: 100px;
width: fit-content;

View File

@@ -1,6 +1,8 @@
/*
#club-top-scorers-container {
flex: 1;
background-color: #dcdcdc; /* Example background color */
width: 40%;
/* Add any other styling you need for the top scorers container */
}
}
*/

View File

@@ -29,7 +29,7 @@
}
/* Table that holds all the standing information */
#standings-table, .table
#standings-table
{
width: 100%;
padding: 15px;
@@ -43,8 +43,7 @@
/* Data in Row Style */
td
{
padding: 15px;
padding: 5px;
}
/* Every Odd Row in Table Style */

View File

@@ -1,4 +1,5 @@
<div id="league-page-body" class="page-container">
<!-- Container for all league information (logo, name, country, etc. ) <- top 100px -->
<div id="league-information-container" class="information-container">
<img id="league-logo" src="{{league.competition.league_emblem}}" alt="{{league.competition.league_name}} Emblem">
@@ -19,7 +20,7 @@
<!-- Container containing all league table stats -->
<div id="table-stats-container" class="stats-container">
<table id="standings-table" class = "table">
<table id="standings-table">
<thead>
<tr>
<th>#</th>
@@ -85,4 +86,4 @@
</div>
</div>
</div>
</div>