rollerderby-track/track.html

38 lines
685 B
HTML
Raw Normal View History

2012-03-15 16:20:29 -06:00
<!DOCTYPE html>
<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>