More CSS clean-up to remove redundant styling and streamline elements

This commit is contained in:
Lucas Patenaude
2024-04-16 14:56:22 -06:00
parent 80c1dca846
commit ae054ed60a
8 changed files with 98 additions and 177 deletions

View File

@@ -1,34 +1,4 @@
/* 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 */
}
}