diff --git a/ProjectSourceCode/src/resources/css/league-pages/league-page.css b/ProjectSourceCode/src/resources/css/league-pages/league-page.css index 8220dbb..37a9204 100644 --- a/ProjectSourceCode/src/resources/css/league-pages/league-page.css +++ b/ProjectSourceCode/src/resources/css/league-pages/league-page.css @@ -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); } diff --git a/ProjectSourceCode/src/resources/css/league-pages/league-table.css b/ProjectSourceCode/src/resources/css/league-pages/league-table.css index b078c6c..60f6ea2 100644 --- a/ProjectSourceCode/src/resources/css/league-pages/league-table.css +++ b/ProjectSourceCode/src/resources/css/league-pages/league-table.css @@ -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; }