humus-old/client/index.html

34 lines
561 B
HTML
Raw Normal View History

2019-03-20 15:28:18 -05:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Avocado</title>
<style>
html, body {
background-color: #333333;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
overflow: hidden;
}
2019-03-28 04:12:14 -05:00
.app {
2019-03-20 15:28:18 -05:00
align-items: center;
display: flex;
2019-03-28 04:12:14 -05:00
height: 100%;
line-height: 0;
2019-03-20 15:28:18 -05:00
width: 100%;
}
2019-03-28 04:12:14 -05:00
canvas {
margin: auto;
}
2019-03-20 15:28:18 -05:00
</style>
</head>
<body>
<div
class="app"
tabindex="0"
></div>
2019-03-20 15:28:18 -05:00
</body>
</html>