New Styling added to league page cards

This commit is contained in:
Lucas Patenaude
2024-04-15 02:09:31 -06:00
parent 19ca0cd36f
commit c9b7be334a
2 changed files with 5 additions and 6 deletions

View File

@@ -106,9 +106,8 @@
padding: 15px;
/* --- STYLE CONTAINER --- */
background-color: #ffffff; /* Example background color */
background: linear-gradient(to top, rgb(216, 216, 216), rgb(236, 236, 236), rgb(241, 240, 240));
border: 1px solid gray;
border-radius: 8px;
box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.5);
}

View File

@@ -11,7 +11,7 @@
justify-content: center;
align-items: center;
margin-right: 20px;
margin-right: 30px;
transition: transform 0.3s ease; /* Add smooth transition effect */
}
@@ -37,7 +37,6 @@
/* Table Header Styling */
th
{
background-color: white;
border-bottom: 3px solid red; /* Add red bottom border */
}
@@ -48,9 +47,9 @@
}
/* Every Odd Row in Table Style */
tr:nth-child(odd)
tbody tr:nth-child(odd)
{
background-color: #f7c4c475; /* Light gray for odd rows */
background-color: #d2d2d2; /* Light gray for odd rows */
}
}
@@ -77,6 +76,7 @@
/* Club Name Column in Table Style */
#club-name-column
{
font-weight: 500;
cursor: pointer;
}