Inverted alliance station logo colors.

This commit is contained in:
Patrick Fairbank
2014-08-23 19:51:54 -07:00
parent 30a1f99d02
commit d5102fac1d
3 changed files with 29 additions and 18 deletions

View File

@@ -96,6 +96,14 @@ body {
-webkit-text-stroke-width: 5px;
-webkit-text-stroke-color: #fff;
}
#logoContainer {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: #fff;
}
#logo {
position: absolute;
top: 0;

View File

@@ -17,17 +17,16 @@ var handleSetAllianceStationDisplay = function(targetScreen) {
}
switch (targetScreen) {
case "logo":
$("#preMatch").hide();
$("#inMatch").hide();
$("#logo").show();
$("#match").hide();
$("#logoContainer").show();
break;
case "blank":
$("#preMatch").hide();
$("#inMatch").hide();
$("#logo").hide();
$("#match").hide();
$("#logoContainer").hide();
break;
case "match":
$("#logo").hide();
$("#match").show();
$("#logoContainer").hide();
break;
}
};

View File

@@ -9,19 +9,23 @@
</head>
<body>
<div id="displayId" style="display: none;"></div>
<div id="preMatch" style="display: none;">
<div id="preMatchTeamId"></div>
<div id="teamName"></div>
</div>
<div id="inMatch" style="display: none;">
<div id="inMatchTeamId"></div>
<div id="matchTime"></div>
<div class="row" id="matchInfo">
<div class="col-lg-6 text-center" id="redScore"></div>
<div class="col-lg-6 text-center" id="blueScore"></div>
<div id="match" style="display: none;">
<div id="preMatch" style="display: none;">
<div id="preMatchTeamId"></div>
<div id="teamName"></div>
</div>
<div id="inMatch" style="display: none;">
<div id="inMatchTeamId"></div>
<div id="matchTime"></div>
<div class="row" id="matchInfo">
<div class="col-lg-6 text-center" id="redScore"></div>
<div class="col-lg-6 text-center" id="blueScore"></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>
<script>
// A unique id to differentiate this station's display from its peers.