2012-06-21 10:13:21 +02:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2013-04-03 21:50:28 +02:00
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
<title>UberPong – proudly presented by Team ARG</title>
|
|
|
|
|
|
|
|
|
|
<link rel="shortcut icon" href="media/favicon.ico" type="image/x-icon" >
|
|
|
|
|
|
2012-06-21 10:13:21 +02:00
|
|
|
|
<style type="text/css">
|
2013-04-03 21:50:28 +02:00
|
|
|
|
html {
|
|
|
|
|
background: #070707 url(media/layout-background.jpg) no-repeat;
|
|
|
|
|
font-family: Arial;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
line-height: 13px;
|
2012-06-21 10:13:21 +02:00
|
|
|
|
}
|
2013-04-03 21:50:28 +02:00
|
|
|
|
|
|
|
|
|
#header {
|
|
|
|
|
width: 800px;
|
|
|
|
|
margin: 0 auto 0 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#header img {
|
|
|
|
|
|
|
|
|
|
}
|
2012-06-21 10:13:21 +02:00
|
|
|
|
|
|
|
|
|
#canvas {
|
2013-04-03 21:50:28 +02:00
|
|
|
|
width: 624px;
|
|
|
|
|
height: 383px;
|
|
|
|
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
|
|
margin: -170px auto 0 auto;
|
2012-06-21 10:13:21 +02:00
|
|
|
|
}
|
2013-04-03 21:50:28 +02:00
|
|
|
|
|
|
|
|
|
#footer {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #bebebe;
|
|
|
|
|
|
|
|
|
|
margin: 50px 0 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#footer div.acknowledgement {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#footer div.acknowledgement img {
|
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
|
margin: 0 10px 0 10px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#footer a.website {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 30px 0 30px 0;
|
|
|
|
|
color: #0692d2;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
}
|
2012-06-21 10:13:21 +02:00
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="lib/impact/impact.js"></script>
|
|
|
|
|
<script type="text/javascript" src="lib/game/main.js"></script>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2013-04-03 21:50:28 +02:00
|
|
|
|
<div id="header">
|
|
|
|
|
<img src="media/layout-gamelogo.png">
|
|
|
|
|
</div>
|
|
|
|
|
|
2012-06-21 10:13:21 +02:00
|
|
|
|
<canvas id="canvas"></canvas>
|
2013-04-03 21:50:28 +02:00
|
|
|
|
|
|
|
|
|
<div id="footer">
|
|
|
|
|
<div class="acknowledgement">
|
|
|
|
|
<img src="media/logo-teamarg-s.png">
|
|
|
|
|
used
|
|
|
|
|
<img src="media/logo-impact-s.png">
|
|
|
|
|
for this awesome game.
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<a class="website" href="http://teamarg.com"><strong>teamarg</strong>.com</a>
|
|
|
|
|
</div>
|
2012-06-21 10:13:21 +02:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|