diff --git a/ProjectSourceCode/src/resources/css/live-scoreboard/scoreboard.css b/ProjectSourceCode/src/resources/css/live-scoreboard/scoreboard.css new file mode 100644 index 0000000..113aa50 --- /dev/null +++ b/ProjectSourceCode/src/resources/css/live-scoreboard/scoreboard.css @@ -0,0 +1,16 @@ +.league-container { + display: flex; + justify-content: flex-start; /* Align cards to the left */ + + border: 1px solid rgb(206, 202, 202); +} + +/* Styling for each card representing a live game */ +#game-card { + border: 1px solid #ccc; + padding: 20px; /* Increase padding to increase the apparent height */ + margin: 10px 10px; + min-height: 100px; /* Set a minimum height for the cards */ + box-sizing: border-box; /* Include padding and border in the element's total width and height */ +} + diff --git a/ProjectSourceCode/src/views/partials/head.hbs b/ProjectSourceCode/src/views/partials/head.hbs index ca021c1..f03a395 100644 --- a/ProjectSourceCode/src/views/partials/head.hbs +++ b/ProjectSourceCode/src/views/partials/head.hbs @@ -6,6 +6,7 @@ + Group 6 Final Project diff --git a/ProjectSourceCode/src/views/partials/live-scoreboard.hbs b/ProjectSourceCode/src/views/partials/live-scoreboard.hbs index e69de29..36774a9 100644 --- a/ProjectSourceCode/src/views/partials/live-scoreboard.hbs +++ b/ProjectSourceCode/src/views/partials/live-scoreboard.hbs @@ -0,0 +1,16 @@ +
+
+
+ + Card 1 +
+
+ + Card 2 +
+
+ + Card 3 +
+
+