humus-old/client/index.html
2019-04-12 11:04:59 -05:00

40 lines
840 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>Avocado</title>
<style>
html, body {
background-color: #333333;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
overflow: hidden;
}
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.app {
display: flex;
align-items: center;
height: 100%;
width: 100%;
}
.app .avocado-stage {
margin: auto;
}
</style>
</head>
<body>
<div class="app"></div>
</body>
</html>