50 lines
1.0 KiB
HTML
50 lines
1.0 KiB
HTML
<!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;
|
|
}
|
|
.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;
|
|
}
|
|
.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;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="app"></div>
|
|
</body>
|
|
</html>
|