testing bugs

This commit is contained in:
Daniel Ledda
2020-11-14 01:49:47 +01:00
parent 2773f9f42c
commit a0182ebd1e
2 changed files with 0 additions and 0 deletions

14
webapp/dist/charts.html vendored Normal file
View File

@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ledda's Room Climate</title>
<link href="/climate/static/styles.css" rel="stylesheet" />
<script src="/climate/static/main.js"></script>
</head>
<body>
<div class="chart-container" style="position: relative; height:40vh; width:80vw; margin: auto">
<canvas id="myChart"></canvas>
</div>
</body>
</html>

15
webapp/dist/styles.css vendored Normal file
View File

@@ -0,0 +1,15 @@
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: white;
opacity: 50%;
display: table-cell;
text-align: center;
}
.hidden {
display: none;
}