mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 21:56:50 -04:00
Inverted alliance station logo colors.
This commit is contained in:
@@ -96,6 +96,14 @@ body {
|
|||||||
-webkit-text-stroke-width: 5px;
|
-webkit-text-stroke-width: 5px;
|
||||||
-webkit-text-stroke-color: #fff;
|
-webkit-text-stroke-color: #fff;
|
||||||
}
|
}
|
||||||
|
#logoContainer {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
#logo {
|
#logo {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
|||||||
@@ -17,17 +17,16 @@ var handleSetAllianceStationDisplay = function(targetScreen) {
|
|||||||
}
|
}
|
||||||
switch (targetScreen) {
|
switch (targetScreen) {
|
||||||
case "logo":
|
case "logo":
|
||||||
$("#preMatch").hide();
|
$("#match").hide();
|
||||||
$("#inMatch").hide();
|
$("#logoContainer").show();
|
||||||
$("#logo").show();
|
|
||||||
break;
|
break;
|
||||||
case "blank":
|
case "blank":
|
||||||
$("#preMatch").hide();
|
$("#match").hide();
|
||||||
$("#inMatch").hide();
|
$("#logoContainer").hide();
|
||||||
$("#logo").hide();
|
|
||||||
break;
|
break;
|
||||||
case "match":
|
case "match":
|
||||||
$("#logo").hide();
|
$("#match").show();
|
||||||
|
$("#logoContainer").hide();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -9,19 +9,23 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="displayId" style="display: none;"></div>
|
<div id="displayId" style="display: none;"></div>
|
||||||
<div id="preMatch" style="display: none;">
|
<div id="match" style="display: none;">
|
||||||
<div id="preMatchTeamId"></div>
|
<div id="preMatch" style="display: none;">
|
||||||
<div id="teamName"></div>
|
<div id="preMatchTeamId"></div>
|
||||||
</div>
|
<div id="teamName"></div>
|
||||||
<div id="inMatch" style="display: none;">
|
</div>
|
||||||
<div id="inMatchTeamId"></div>
|
<div id="inMatch" style="display: none;">
|
||||||
<div id="matchTime"></div>
|
<div id="inMatchTeamId"></div>
|
||||||
<div class="row" id="matchInfo">
|
<div id="matchTime"></div>
|
||||||
<div class="col-lg-6 text-center" id="redScore"></div>
|
<div class="row" id="matchInfo">
|
||||||
<div class="col-lg-6 text-center" id="blueScore"></div>
|
<div class="col-lg-6 text-center" id="redScore"></div>
|
||||||
|
<div class="col-lg-6 text-center" id="blueScore"></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<img id="logo" src="/static/img/logo-black.svg" style="display: none;"/>
|
<div id="logoContainer" style="display: none;">
|
||||||
|
<img id="logo" src="/static/img/logo-white.svg" />
|
||||||
|
</div>
|
||||||
<div id="hotGoalLight" style="display: none;"></div>
|
<div id="hotGoalLight" style="display: none;"></div>
|
||||||
<script>
|
<script>
|
||||||
// A unique id to differentiate this station's display from its peers.
|
// A unique id to differentiate this station's display from its peers.
|
||||||
|
|||||||
Reference in New Issue
Block a user