2012-03-15 16:20:29 -06:00
|
|
|
<!DOCTYPE html>
|
2012-03-15 17:44:48 -06:00
|
|
|
<!--
|
|
|
|
Roller Derby Track Copyright © 2012 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/>.
|
|
|
|
-->
|
2012-03-15 16:20:29 -06:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>WFTDA 2010 Track</title>
|
|
|
|
<script type="text/javascript" src="track.js"></script>
|
|
|
|
<style type="text/css">
|
|
|
|
html {
|
|
|
|
background: black;
|
|
|
|
text-align: center;
|
2012-03-15 16:46:05 -06:00
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
html, body, canvas {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
border: 0;
|
|
|
|
}
|
2012-03-15 17:37:50 -06:00
|
|
|
#link {
|
|
|
|
color: #8c8;
|
|
|
|
position: absolute;
|
|
|
|
left: 1em;
|
|
|
|
top: 1em;
|
|
|
|
}
|
2012-03-15 16:46:05 -06:00
|
|
|
#debug {
|
|
|
|
position: absolute;
|
2012-03-15 17:37:50 -06:00
|
|
|
bottom: 1em;
|
|
|
|
right: 1em;
|
2012-03-15 16:46:05 -06:00
|
|
|
background-color: rgba(0, 0, 0, 0.7);
|
2012-03-15 16:20:29 -06:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
2012-03-15 17:37:50 -06:00
|
|
|
<body>
|
|
|
|
<p id="debug"></p>
|
|
|
|
<canvas id="canvas"></canvas>
|
|
|
|
<a id="link" href="#">link to this position</a>
|
|
|
|
</body>
|
2012-03-15 16:20:29 -06:00
|
|
|
</html>
|
|
|
|
|