Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c0f1be346c | |||
| 1b376b4aa1 | |||
| 941871d766 | |||
| 7cc8913a00 |
@@ -72,6 +72,7 @@ function generateGameBoxes(games, state) {
|
|||||||
html += '<span class="team-power-play">' + game['Home Power Play'] + '</span>';
|
html += '<span class="team-power-play">' + game['Home Power Play'] + '</span>';
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
html += '<span class="team-score">' + game['Home Score'] + '</span>';
|
html += '<span class="team-score">' + game['Home Score'] + '</span>';
|
||||||
|
html += '</div>';
|
||||||
html += '<div class="game-info">';
|
html += '<div class="game-info">';
|
||||||
if (game['Intermission']) {
|
if (game['Intermission']) {
|
||||||
html += '<div class="live-state-intermission">'
|
html += '<div class="live-state-intermission">'
|
||||||
@@ -104,7 +105,7 @@ function generateGameBoxes(games, state) {
|
|||||||
html += '<div class="live-time">' + game['Time Remaining'] + '</div>';
|
html += '<div class="live-time">' + game['Time Remaining'] + '</div>';
|
||||||
}
|
}
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
html += '<div class="game-info>';
|
html += '<div class="game-info">';
|
||||||
html += '<strong>Game Score: </strong>' + game['Priority'];
|
html += '<strong>Game Score: </strong>' + game['Priority'];
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
html += '</div>';
|
html += '</div>';
|
||||||
|
|||||||
@@ -76,9 +76,10 @@ h1 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.game-info {
|
.game-info {
|
||||||
margin-top: 10px;
|
margin-top: 12px;
|
||||||
color: #aaa; /* Lighten the text color */
|
color: #aaa; /* Lighten the text color */
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.game-info strong {
|
.game-info strong {
|
||||||
@@ -171,7 +172,7 @@ h1 {
|
|||||||
z-index: 1; /* Ensure the time box is above other content */
|
z-index: 1; /* Ensure the time box is above other content */
|
||||||
}
|
}
|
||||||
|
|
||||||
.live-games-section {
|
#live-games-section {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: start;
|
align-items: start;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@@ -179,7 +180,7 @@ h1 {
|
|||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pre-games-section {
|
#pre-games-section {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: start;
|
align-items: start;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
@@ -187,7 +188,7 @@ h1 {
|
|||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.final-games-section {
|
#final-games-section {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: start;
|
align-items: start;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
|||||||
Reference in New Issue
Block a user