Files
ScoreSpot/ProjectSourceCode/src/resources/css/league-pages/league-table.css

34 lines
642 B
CSS
Raw Normal View History

2024-04-13 18:26:14 -06:00
#league-table-container {
2024-04-13 18:40:46 -06:00
width: 60%;
justify-content: center;
align-items: center;
2024-04-13 18:26:14 -06:00
}
#standings-table {
width: 100%;
padding: 5px;
}
#club-logo {
2024-04-13 18:26:14 -06:00
width: 20px;
margin-right: 5px;
cursor: pointer;
2024-04-14 14:25:56 -06:00
transform: skewX(0deg); /* Skew the banner to create a triangular side */
}
#club-name {
cursor: pointer;
2024-04-13 18:26:14 -06:00
}
#standings-table td {
padding: 5px;
}
/* Define styles for odd and even rows */
#standings-table tbody tr:nth-child(odd) {
background-color: #f2f2f2; /* Light gray for odd rows */
}
#standings-table tbody tr:nth-child(even) {
background-color: #ffffff; /* White for even rows */
}