CSS reorganization started to streamline elements on generated pages

This commit is contained in:
Lucas Patenaude
2024-04-16 13:48:57 -06:00
parent c5336b6bae
commit f7cc426358
8 changed files with 12 additions and 8 deletions

View File

@@ -0,0 +1,34 @@
/* Container for all stats and player cards */
#club-stats-and-players-container {
width: 80%;
}
/*
=================================
PLAYER TABLE CONTAINER
=================================
*/
/* Table containing player information */
#club-players-table {
width: 100%;
padding: 15px;
/* Table Header Styling */
th
{
border-bottom: 3px solid red; /* Add red bottom border */
}
/* Data in Row Style */
td
{
padding: 5px;
}
/* Every Odd Row in Table Style */
tbody tr:nth-child(odd)
{
background-color: #d2d2d2; /* Light gray for odd rows */
}
}