-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathwidget.html
30 lines (30 loc) · 1.07 KB
/
widget.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link href="./styles.css" rel="stylesheet">
<title>Owlet</title>
</head>
<body>
<main>
<section class="sgv">
<div class="sgv__last sgv--flicker">?.?</div>
<div class="sgv__delta sgv--flicker">?.?</div>
<div class="sgv__trend sgv--flicker">?</div>
<div class="sgv__age sgv--flicker"><span class="sgv__age-value">?</span> min.</div>
</section>
<section class="widget-control">
<button class="widget-button" id="button-close">
<img src="asset/icons8-close.png" alt="close" width="12px" height="12px">
</button>
<button class="widget-button" id="button-browse">
<img src="asset/icons8-polyline.png" alt="browse" width="12px" height="12px">
</button>
<button class="widget-button" id="button-settings">
<img src="asset/icons8-settings.png" alt="setup" width="12px" height="12px">
</button>
</section>
</main>
<script type="module" src="./js/widget.js"></script>
</body>
</html>