-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (47 loc) · 1.58 KB
/
index.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Web Annunciator Panel</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel="stylesheet" href="./annunciator.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=B612+Mono:wght@400;700&family=B612:wght@400;700&display=swap"
rel="stylesheet">
<meta name="color-scheme" content="only dark" />
</head>
<body>
<h1>Web Annunciator Panel</h1>
<p><q>An old-fashioned alarm awareness dashboard in your browser</q> Currently work in progress.</p>
<p><a class="button" href="dashboard.html">See an example!</a></p>
<h2>Alarm types</h2>
<div class="dashboard">
<div class="indicator sts-critical">
Critical alarm
</div>
<div class="indicator sts-danger">
Danger alarm
</div>
<div class="indicator sts-caution">
Caution alarm
</div>
<div class="indicator sts-indication">
Indication alarm
</div>
<div class="indicator sts-info">
Information alarm
</div>
<div class="indicator sts-ok">
OK indicator
</div>
<div class="indicator sts-off">
This alarm is off
</div>
<div class="indicator sts-locked">
This alarm is locked
</div>
</div>
</body>
</html>