Files
JellySport/ProjectSourceCode/src/resources/css/league-pages/league-table.css
2024-04-14 17:00:20 -06:00

49 lines
834 B
CSS

#league-table-and-information-container {
width: 60%;
justify-content: center;
align-items: center;
transition: transform 0.3s ease; /* Add smooth transition effect */
}
#standings-table {
width: 100%;
padding: 15px;
}
#club-logo-row {
width: 20px;
}
#table-club-logo {
width: 20px;
margin-right: 5px;
cursor: pointer;
}
#club-name {
cursor: pointer;
}
#standings-table td {
padding: 5px;
}
/* Define styles for odd and even rows */
#standings-table tbody tr:nth-child(odd) {
background-color: #f7f6f6; /* Light gray for odd rows */
}
#standings-table tbody tr:nth-child(even) {
background-color: #ffffff; /* White for even rows */
}
/* Add hover effect to table rows */
#standings-table tbody tr:hover {
border: 1px solid lightgray;
border-radius: 10px;
}