diff --git a/ProjectSourceCode/src/resources/css/league-page/league-page.css b/ProjectSourceCode/src/resources/css/league-page/league-page.css new file mode 100644 index 0000000..38a1182 --- /dev/null +++ b/ProjectSourceCode/src/resources/css/league-page/league-page.css @@ -0,0 +1,28 @@ +#league-page-body { + display: flex; + flex-direction: column; + height: 100vh; +} + +#league-information-container { + height: 100px; + background-color: #f0f0f0; /* Example background color */ + /* Add any other styling you need for the league information container */ +} + +#league-stats-container { + display: flex; + flex: 1; +} + +#league-table-container { + flex: 1; + background-color: #eaeaea; /* Example background color */ + /* Add any other styling you need for the league table container */ +} + +#top-scorers-container { + flex: 1; + background-color: #dcdcdc; /* Example background color */ + /* Add any other styling you need for the top scorers container */ +} diff --git a/ProjectSourceCode/src/views/pages/league-page.hbs b/ProjectSourceCode/src/views/pages/league-page.hbs index 5c5a2db..4a2eaf0 100644 --- a/ProjectSourceCode/src/views/pages/league-page.hbs +++ b/ProjectSourceCode/src/views/pages/league-page.hbs @@ -8,12 +8,12 @@
- +
- +
diff --git a/ProjectSourceCode/src/views/partials/head.hbs b/ProjectSourceCode/src/views/partials/head.hbs index 11f65dc..3c432ff 100644 --- a/ProjectSourceCode/src/views/partials/head.hbs +++ b/ProjectSourceCode/src/views/partials/head.hbs @@ -9,7 +9,6 @@ - @@ -19,6 +18,12 @@ + + + + + + Group 6 Final Project