You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.6 KiB
HTML
49 lines
1.6 KiB
HTML
4 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Termostat</title>
|
||
|
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<main>
|
||
|
<header>
|
||
|
<div class="logo">
|
||
|
<img src="img/logo.svg" alt="Logo">
|
||
|
<h1>Termo<sub>stat</sub></h1>
|
||
|
</div>
|
||
|
<div class="state">
|
||
|
<span>Aktuální stav</span>
|
||
4 years ago
|
<div>
|
||
|
<span id="actual-state">Netopí</span>
|
||
|
<img id="actual-state-img" src="img/netopi.svg" alt="Stav - netopí">
|
||
4 years ago
|
</div>
|
||
|
</div>
|
||
|
</header>
|
||
|
<section>
|
||
|
<h2>Požadovaná teplota</h2>
|
||
|
<div class="inputs">
|
||
4 years ago
|
<img id="tempUp" src="img/arrow_up.svg" alt="Zvýšit požadovanou teplotu">
|
||
|
<div id="reqTemp">0</div>
|
||
|
<img id="tempDown" src="img/arrow_down.svg" alt="Snížit požadovanou teplotu">
|
||
4 years ago
|
<span>Offset</span>
|
||
4 years ago
|
<img id="offsetUp" src="img/arrow_up_offset.svg" alt="Zvýšit offset">
|
||
|
<div id="offset">0</div>
|
||
|
<img id="offsetDown" src="img/arrow_down_offset.svg" alt="Snížit offset">
|
||
4 years ago
|
</div>
|
||
|
</section>
|
||
|
<footer>
|
||
|
<h2>Aktuální teplota</h2>
|
||
4 years ago
|
<div id="temp">0</div>
|
||
4 years ago
|
<div class="git"><a href="https://git.microlab.space/pixx/ESP8266-termostat">Git</a></div>
|
||
|
</footer>
|
||
|
</main>
|
||
4 years ago
|
<script src="script.js"></script>
|
||
4 years ago
|
</body>
|
||
|
|
||
|
</html>
|