2012-04-07 09:35:17 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!--
|
|
|
|
Roller Derby Scoreboard Copyright © 2011 Neale Pickett
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see
|
|
|
|
<http://www.gnu.org/licenses/>.
|
|
|
|
-->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>LADD Scoreboard</title>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<link rel="stylesheet" type="text/css" href="scoreboard.css">
|
|
|
|
<style type="text/css">
|
2012-04-08 21:50:04 -06:00
|
|
|
body {
|
|
|
|
background: black;
|
2012-07-06 23:45:03 -06:00
|
|
|
}
|
|
|
|
#scoreboard {
|
|
|
|
font-size: 2em;
|
2012-04-08 21:50:04 -06:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#jam, #period {
|
2012-07-06 23:45:03 -06:00
|
|
|
position: inherit;
|
|
|
|
margin: inherit;
|
|
|
|
width: inherit;
|
|
|
|
left: inherit;
|
2012-04-08 21:50:04 -06:00
|
|
|
color: white;
|
|
|
|
}
|
2012-07-06 23:45:03 -06:00
|
|
|
#jamtext {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: 50%;
|
|
|
|
margin: inherit;
|
|
|
|
width: inherit;
|
|
|
|
|
|
|
|
position: inherit;
|
|
|
|
bottom: 0em;
|
|
|
|
left: 0em;
|
2012-04-08 21:50:04 -06:00
|
|
|
}
|
|
|
|
html, p {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2012-04-07 09:35:17 -06:00
|
|
|
</style>
|
|
|
|
<script type="text/javascript" src="scoreboard.js"></script>
|
|
|
|
<script type="text/javascript">
|
2012-07-06 23:45:03 -06:00
|
|
|
jamtext = ["J", "L", "T", "S"];
|
|
|
|
tenths = false;
|
2012-04-07 09:35:17 -06:00
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="scoreboard">
|
|
|
|
<p>
|
|
|
|
<span id="period" onclick="handle(event);">--:--</span>
|
|
|
|
</p>
|
|
|
|
<p>
|
2012-07-06 23:45:03 -06:00
|
|
|
<span id="jamtext">S</span>
|
|
|
|
<span id="jam" onclick="handle(event);">-:--</span>
|
2012-04-07 09:35:17 -06:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|