Add crg-nologo style, Whistler CA teams
This commit is contained in:
parent
ea96229414
commit
d01663f5ee
|
@ -79,7 +79,7 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="scoreboard.html">Normal layout</a> similar to most
|
<li><a href="scoreboard.html">Normal layout</a> similar to most
|
||||||
other roller derby scoreboards</li>
|
other roller derby scoreboards</li>
|
||||||
<li><a href="crg.html">CRG-style layout</a></li>
|
<li><a href="crg.html">CRG-style layout</a>, or <a href="crg-nologo.html">CRG without logos</a></li>
|
||||||
<li><a href="penalties.html">Penalty tracking</a> layout</li>
|
<li><a href="penalties.html">Penalty tracking</a> layout</li>
|
||||||
<li><a href="highvis.html">High-visibility</a> for
|
<li><a href="highvis.html">High-visibility</a> for
|
||||||
low-power projectors or outdoor bouts</li>
|
low-power projectors or outdoor bouts</li>
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 49 KiB |
Binary file not shown.
After Width: | Height: | Size: 8.3 KiB |
BIN
logos/green.png
BIN
logos/green.png
Binary file not shown.
Before Width: | Height: | Size: 8.2 KiB After Width: | Height: | Size: 7.8 KiB |
|
@ -29,6 +29,8 @@ teams = [
|
||||||
["TKRD", "tulare-kings.png", "Tulare Kings Roller Derby"],
|
["TKRD", "tulare-kings.png", "Tulare Kings Roller Derby"],
|
||||||
["CHRY", "cherries.png", "Los Alamos Cherry Bombs"],
|
["CHRY", "cherries.png", "Los Alamos Cherry Bombs"],
|
||||||
["PLG", "plague.png", "Zombie Plague"],
|
["PLG", "plague.png", "Zombie Plague"],
|
||||||
|
["BDB", "bd-betties.png", "Black Diamond Betties"],
|
||||||
|
["SKS", "sirens.png", "Sea to Sky Sirens"],
|
||||||
];
|
];
|
||||||
teams.sort();
|
teams.sort();
|
||||||
|
|
||||||
|
@ -37,5 +39,6 @@ teams.splice(0, 0,
|
||||||
["Blk", "black.png", "Black Team"],
|
["Blk", "black.png", "Black Team"],
|
||||||
["Wht", "white.png", "White Team"],
|
["Wht", "white.png", "White Team"],
|
||||||
["Grn", "green.png", "Green Team"],
|
["Grn", "green.png", "Green Team"],
|
||||||
["Rng", "orange.png", "Orange Team"]
|
["Rng", "orange.png", "Orange Team"],
|
||||||
|
["Blu", "blue.png", "Blue Team"]
|
||||||
);
|
);
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 77 KiB |
|
@ -50,6 +50,10 @@ body {
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.center {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
max-width: 1.8em;
|
max-width: 1.8em;
|
||||||
max-height: 2em;
|
max-height: 2em;
|
||||||
|
@ -126,6 +130,11 @@ body {
|
||||||
bottom: 1.4em;
|
bottom: 1.4em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#advert {
|
||||||
|
margin-top: 1.4em;
|
||||||
|
max-height: 2em;
|
||||||
|
max-width: 5em;
|
||||||
|
}
|
||||||
|
|
||||||
.score {
|
.score {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
|
@ -23,6 +23,7 @@
|
||||||
<link rel="stylesheet" type="text/css" href="res/scoreboard.css">
|
<link rel="stylesheet" type="text/css" href="res/scoreboard.css">
|
||||||
<script type="text/javascript" src="logos/logos.js"></script>
|
<script type="text/javascript" src="logos/logos.js"></script>
|
||||||
<script type="text/javascript" src="res/scoreboard.js"></script>
|
<script type="text/javascript" src="res/scoreboard.js"></script>
|
||||||
|
<script type="text/javascript" src="res/adverts.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<!--
|
<!--
|
||||||
|
@ -39,10 +40,9 @@
|
||||||
|
|
||||||
<p class="center">
|
<p class="center">
|
||||||
<span id="period" onclick="handle(event);">--:--</span>
|
<span id="period" onclick="handle(event);">--:--</span>
|
||||||
<span id="periodtext" onclick="handle(event);"></span>
|
<img id="no-advert" src="error.jpg" onerror="adverterror()">
|
||||||
<span id="jam" onclick="handle(event);">-:--.-</span>
|
<span id="jam" onclick="handle(event);">-:--.-</span>
|
||||||
<span id="jamtext" onclick="handle(event);"></span>
|
<span id="jamtext" onclick="handle(event);"></span>
|
||||||
<span id="jamno" onclick="handle(event);">0</span>
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p class="right">
|
<p class="right">
|
||||||
|
|
Loading…
Reference in New Issue