humus-old/client/index.html

50 lines
1.0 KiB
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-04-04 17:14:49 -05:00
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
2019-03-28 04:12:14 -05:00
.app {
2019-03-20 15:28:18 -05:00
display: flex;
2019-04-04 17:14:49 -05:00
align-items: center;
2019-03-28 04:12:14 -05:00
height: 100%;
2019-03-20 15:28:18 -05:00
width: 100%;
}
2019-04-04 17:14:49 -05:00
.app .avocado-stage {
2019-03-28 04:12:14 -05:00
margin: auto;
}
2019-04-04 17:14:49 -05:00
.ui .time {
background-color: rgba(0, 0, 0, .3);
border: 0.5px solid gray;
border-radius: 50px;
color: white;
position: absolute;
top: 5px;
right: 5px;
line-height: 1em;
padding: 0.5em;
font-family: monospace;
}
2019-03-20 15:28:18 -05:00
</style>
</head>
<body>
2019-03-28 20:36:08 -05:00
<div class="app"></div>
2019-03-20 15:28:18 -05:00
</body>
</html>