33 lines
927 B
HTML
33 lines
927 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Components test</title>
|
|
<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 href="https://fonts.googleapis.com/css?family=Source+Code+Pro" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
background-color: rgba(0, 0, 0, 0.98);
|
|
color: #fff;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
main {
|
|
display: grid;
|
|
grid-template-columns: 50vw 50vw;
|
|
grid-template-rows: 80vh 80vh;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<cbase-heatmap timeseries="crew.online" interpolate></cbase-heatmap>
|
|
<cbase-polar timeseries="bar.open" days="90" percentage></cbase-polar>
|
|
</main>
|
|
</body>
|
|
</html>
|
|
|