infoscreens/bar-history/index.html
2017-12-01 17:35:52 +01:00

57 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>c-base bar stats</title>
<script src="../node_modules/@webcomponents/webcomponentsjs/webcomponents-lite.js"></script>
<script src="../node_modules/@webcomponents/webcomponentsjs/custom-elements-es5-adapter.js"></script>
<script src="../node_modules/plotly.js/dist/plotly.min.js"></script>
<script src="../dist/infoscreens.js"></script>
<link rel="stylesheet" href="../theme/c-base.css">
<style>
h1 {
font-size: 6vmin;
width: 100vw;
text-align: center;
line-height: 8vmin;
margin-bottom: 0px;
padding-bottom: 0px;
}
main {
display: flex;
width: 98vw;
height: 98vh;
align-items: center;
justify-content: center;
flex-direction: column;
}
p {
font-size: 6vmin;
margin: 0px;
padding: 0px;
width: 80vw;
text-align: center;
}
cbase-polar {
height: 65vmin;
width: 65vmin;
}
@media (orientation: portrait) {
p {
width: 95vw;
font-size: 5vmin;
}
}
</style>
</head>
<body class="station">
<main>
<h1>bar historical data</h1>
<cbase-polar timeseries="bar.open" days="90" size="65" percentage></cbase-polar>
<p>
Likelihood of bar being open at a given hour. Based on last 90 days.
</p>
</main>
</body>
</html>