-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (48 loc) · 1.67 KB
/
index.html
File metadata and controls
52 lines (48 loc) · 1.67 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html lang="en">
<head>
<title>USB 01</title>
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta charset="utf8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="/source/style.css" />
<link rel="stylesheet" href="https://alembic.openlab.dev/labcoat.css" />
<link rel="stylesheet" href="https://fonts.openlab.dev/inter/inter.css" />
</head>
<body>
<header>USB 01</header>
<main>
<center-layout class="flow">
<p>Take a look at the Open Lab floor in the Urban Sciences Building!</p>
<label class="field">
<span class="field-label">Metric</span>
<select id="metric">
<option value="room-temperature">Temperature</option>
<option value="occupancy-sensor">Occupancy</option>
<option value="co2">CO2</option>
<option value="room-brightness">Room Brightness</option>
</select>
</label>
<div id="canvas"></div>
<p>
<label id="timestamp">Latest data: </label>
</p>
<div id="legend">
<p>Legend</p>
<ul></ul>
</div>
</center-layout>
</main>
<dialog id="popup" class="flow"></dialog>
<footer>
Made by <a href="https://openlab.ncl.ac.uk/people/rob-anderson/">Rob</a> +
<a href="https://openlab.ncl.ac.uk/people/dan-jackson/">Dan</a> &
<a href="https://github.com/digitalinteraction/usb-01">open source</a>
</footer>
<script type="module" src="/source/main.js"></script>
<script
type="module"
src="https://alembic.openlab.dev/everything.js"
></script>
</body>
</html>