33 lines
500 B
HTML
33 lines
500 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>RPGedit</title>
|
|
<style type="text/css">
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
text-align: center;
|
|
}
|
|
|
|
canvas {
|
|
position: relative;
|
|
top: calc(50% - 384px);
|
|
}
|
|
|
|
* {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
border: 0px;
|
|
background: #223;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="rpgedit" width="1024" height="768"></canvas>
|
|
<script src="bundle.js"></script>
|
|
</body>
|
|
</html>
|