New stylesheets added for club pages

This commit is contained in:
Lucas Patenaude
2024-04-14 14:25:56 -06:00
parent a137a3f73d
commit f6f75075e0
8 changed files with 92 additions and 12 deletions

View File

@@ -0,0 +1,34 @@
#league-table-container {
width: 60%;
justify-content: center;
align-items: center;
}
#standings-table {
width: 100%;
padding: 5px;
}
#club-logo {
width: 20px;
margin-right: 5px;
cursor: pointer;
transform: skewX(0deg); /* Skew the banner to create a triangular side */
}
#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: #f2f2f2; /* Light gray for odd rows */
}
#standings-table tbody tr:nth-child(even) {
background-color: #ffffff; /* White for even rows */
}