Update
This commit is contained in:
parent
406ee88938
commit
f7e607f06e
File diff suppressed because one or more lines are too long
@ -1,17 +1,62 @@
|
|||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face{
|
||||||
|
font-family: os;
|
||||||
|
src: url(../fonts/ops.ttf);
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face{
|
||||||
|
font-family: osl;
|
||||||
|
src: url(../fonts/opsl.ttf);
|
||||||
|
}
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--background: whitesmoke;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background: var(--background);
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
font-family: os;
|
||||||
|
/* max-width: 1200px; */
|
||||||
|
padding: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
background-color: dodgerblue;
|
||||||
|
color: white;
|
||||||
|
padding: 1rem;
|
||||||
|
height: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.containers {
|
||||||
|
max-width: 1300px;
|
||||||
|
margin: 0 auto;
|
||||||
|
display: grid;
|
||||||
|
grid-gap: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chart {
|
||||||
|
height: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 900px) {
|
||||||
|
.containers { grid-template-columns: repeat(2, 1fr); }
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-device-width: 480px) {
|
||||||
|
.containers { grid-template-columns: repeat(1, 1fr); }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
main svg {
|
main svg {
|
||||||
position: relative;
|
position: relative;
|
||||||
left: 50%;
|
left: 50%;
|
||||||
transform: translate(-50%);
|
transform: translate(-50%);
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
right: 0;
|
|
||||||
bottom: 0;
|
|
||||||
background-color: #D8D8D8;
|
|
||||||
text-align: center;
|
|
||||||
height: 50px;
|
|
||||||
font-size: 25px;
|
|
||||||
padding-top: 5px;
|
|
||||||
}
|
|
||||||
BIN
site/views/fonts/ops.ttf
Normal file
BIN
site/views/fonts/ops.ttf
Normal file
Binary file not shown.
BIN
site/views/fonts/opsl.ttf
Normal file
BIN
site/views/fonts/opsl.ttf
Normal file
Binary file not shown.
@ -1,4 +1,5 @@
|
|||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||||
<script src="https://www.gstatic.com/firebasejs/7.24.0/firebase-app.js"></script>
|
<script src="https://www.gstatic.com/firebasejs/7.24.0/firebase-app.js"></script>
|
||||||
@ -6,14 +7,51 @@
|
|||||||
<script src="https://www.gstatic.com/firebasejs/7.24.0/firebase-firestore.js"></script>
|
<script src="https://www.gstatic.com/firebasejs/7.24.0/firebase-firestore.js"></script>
|
||||||
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
|
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
|
||||||
<link rel="stylesheet" type="text/css" href="css/style.css">
|
<link rel="stylesheet" type="text/css" href="css/style.css">
|
||||||
|
<title>IoT plant watering project</title>
|
||||||
|
<base href="https://weather.maxhunt.design/" target="_blank">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div id="temp_chart"></div>
|
<div class="containers">
|
||||||
<div id="humidity_chart"></div>
|
<div class="container">ONE</div>
|
||||||
<div id="wind_chart"></div>
|
<div class="container">TWO</div>
|
||||||
<div id="rain_chart"></div>
|
<div class="container chart_container">
|
||||||
<div id="cloud_chart"></div>
|
<div id="temp_chart" class="chart"></div>
|
||||||
|
</div>
|
||||||
|
<div class="container chart_container">
|
||||||
|
<div id="humidity_chart" class="chart"></div>
|
||||||
|
</div>
|
||||||
|
<div class="container chart_container">
|
||||||
|
<div id="wind_chart" class="chart"></div>
|
||||||
|
</div>
|
||||||
|
<div class="container chart_container">
|
||||||
|
<div id="rain_chart" class="chart"></div>
|
||||||
|
</div>
|
||||||
|
<div class="container chart_container">
|
||||||
|
<div id="cloud_chart" class="chart"></div>
|
||||||
|
</div>
|
||||||
|
<div class="container">EIGHT</div>
|
||||||
|
<div class="container">NINE</div>
|
||||||
|
<div class="container">TEN</div>
|
||||||
|
<div class="container">ELEVEN</div>
|
||||||
|
<div class="container">TWELVE</div>
|
||||||
|
</div>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script defer src="js/main.js"></script>
|
<script defer src="js/main.js"></script>
|
||||||
<script src="js/fInit.js"></script>
|
<script src="js/fInit.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -99,7 +99,7 @@ function createGraph_2() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
plot_graphs();
|
// plot_graphs();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -121,31 +121,3 @@ plot_graphs();
|
|||||||
// })
|
// })
|
||||||
// }
|
// }
|
||||||
// })
|
// })
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// function draw_temp_graph() {
|
|
||||||
// var trace = {
|
|
||||||
// type: 'line',
|
|
||||||
// y: temperatures,
|
|
||||||
// x: formatted_datetimes,
|
|
||||||
// text: "Air temperature",
|
|
||||||
// marker: { color: '#00FFFF', line: {width: 5}}
|
|
||||||
// }
|
|
||||||
// var data = [trace]
|
|
||||||
|
|
||||||
// var layout = {
|
|
||||||
// title: 'Air temperature',
|
|
||||||
// font: { size: 15, color: '#AAAAAA' },
|
|
||||||
// paper_bgcolor: '#111111',
|
|
||||||
// plot_bgcolor: '#111111',
|
|
||||||
// title: {text: "Air tempereature",font: {color: '#FFFFFF'}},
|
|
||||||
// xaxis: {title: {text: 'Date',font: {color: '#FFFFFF'}}},
|
|
||||||
// yaxis: {title: {text: 'Temperature in ºC',font: {color: '#FFFFFF'}}}
|
|
||||||
// }
|
|
||||||
|
|
||||||
// var config = { responsive: true, scrollZoom: true, displaylogo: false}
|
|
||||||
|
|
||||||
// Plotly.newPlot('temp_chart', data, layout, config)
|
|
||||||
// }
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user