woozle-scoreboard/micro.html

72 lines
2.0 KiB
HTML
Raw Normal View History

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">
2012-07-13 19:05:20 -06:00
<link rel="stylesheet" type="text/css" href="res/scoreboard.css">
2012-04-07 09:35:17 -06:00
<style type="text/css">
body {
background: black;
2012-07-06 23:45:03 -06:00
}
#scoreboard {
font-size: 2em;
text-align: center;
}
#jam, #period {
2012-07-06 23:45:03 -06:00
position: inherit;
margin: inherit;
width: inherit;
left: inherit;
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;
}
html, p {
padding: 0;
margin: 0;
}
2012-04-07 09:35:17 -06:00
</style>
2012-07-13 19:05:20 -06:00
<script type="text/javascript" src="res/scoreboard.js"></script>
2012-04-07 09:35:17 -06:00
<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>