forked from lucaspatenaude/ScoreSpot
35 lines
705 B
CSS
35 lines
705 B
CSS
#league-table-container {
|
|
|
|
flex: 1;
|
|
background-color: #eaeaea; /* Example background color */
|
|
margin: 10px;
|
|
|
|
border: 1px solid gray;
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4);
|
|
/* Add any other styling you need for the league table container */
|
|
}
|
|
|
|
#standings-table {
|
|
width: 100%;
|
|
padding: 5px;
|
|
}
|
|
|
|
#table-logo {
|
|
width: 20px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
#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 */
|
|
} |