-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (55 loc) · 1.67 KB
/
index.html
File metadata and controls
63 lines (55 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
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Altitude Lamp Interface</title>
<style>
body {
background-color: #000;
margin: 0;
text-align: center;
color: #fff;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
a {
background-color: #fff;
padding: 32px;
box-shadow: 4px 4px 0px #aaaaaa;
display: block;
width: fit-content;
margin-left: auto;
margin-right: auto;
transition: 0.25s;
cursor: pointer;
text-decoration: none !important;
}
a:active {
background-color: #fff;
padding: 32px;
box-shadow: 0px 0px 0px #000;
}
a:hover {
box-shadow: 8px 8px 0px #aaaaaa;
}
</style>
</head>
<body>
<h1>Altitude Lamp</h1>
<h2>Control Interface</h2>
<hr>
<h2>Select an option below:</h2>
<br>
<a href="/?rainbow" title="rainbow" target="_self">🟥🟧🟨🟩🟦🟪</a>
<br>
<a href="/?bw" title="black and white" target="_self">⬛⬜⬛⬜⬛⬜</a>
<br>
<a href="/?fadewhite" title="fade white" target="_self">▫◽◻⬜⬜◻◽▫</a>
<br>
<a href="/?candyfloss" title="candyfloss" target="_self">🟪🟪🟪⬜⬜⬜</a>
<br>
<a href="/?solidwhite" title="solid white" target="_self">⬜⬜⬜⬜⬜⬜</a>
<br>
<a href="/?off" title="off" target="_self">LIGHTS OFF</a>
</body>
</html>