forked from lucaspatenaude/ScoreSpot
49 lines
834 B
CSS
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;
|
|
}
|