2020-10-08 19:04:57 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<style>
|
|
|
|
html, body, div
|
|
|
|
{
|
|
|
|
padding:0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
body
|
|
|
|
{
|
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
canvas
|
|
|
|
{
|
|
|
|
background-color: white;
|
|
|
|
width:100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#game
|
|
|
|
{
|
2020-10-09 15:52:01 +02:00
|
|
|
width: 100;
|
|
|
|
height: 100;
|
2020-10-08 19:04:57 +02:00
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2020-10-09 15:52:01 +02:00
|
|
|
|
|
|
|
#inviteDiv {
|
|
|
|
color: aquamarine;
|
|
|
|
font-size: 30px;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2020-10-08 19:04:57 +02:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<script src="phaser.min.js?v=3100" charset="utf-8"></script>
|
|
|
|
<script src="index.js" charset="utf-8"></script>
|
2020-10-09 15:52:01 +02:00
|
|
|
<div id="inviteDiv"><h1>YOU'RE INVITED!<h1></div>
|
2020-10-08 19:04:57 +02:00
|
|
|
<div id="game"></div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|