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-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;

View File

@@ -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;
} }
}; };

View File

@@ -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.