-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (54 loc) · 1.5 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
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="manifest" href="soundshow.webmanifest">
<link rel="stylesheet" type="text/css" href="kube/dist/css/kube.css">
<script src="common.js"></script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Colours: #16AACC #3F8899 #02FFA3 #FF4942 #CC165C -->
<style>
@font-face {
font-family: 'Teko';
src: url('/fonts/Teko-Regular.ttf') format('truetype');
}
h1, a {
font-family: 'Teko';
}
a {
color: white;
}
a:hover {
color: #F51FAB;
}
body {
background: rgba(63, 136, 153, 0.4);
padding: 20px;
color: white;
}
div.hero {
padding: 8px;
text-align: center;
border-radius: 4px;
}
</style>
</head>
<body>
<div class="is-row is-stack-20">
<div class="is-col hero" style="background: #3F8899">
<h1>Sound Show</h1>
</div>
</div>
<div class="is-row is-stack-20">
<div class="is-col is-33 hero" style="background: #16AACC">
<a href="/soundtrack.html"><h1>Soundtrack</h1></a>
</div>
<div class="is-col is-33 hero" style="background: #02FFA3">
<a href="/frequency.html"><h1>Frequency generator</h1></a>
</div>
<div class="is-col is-33 hero" style="background: #FF0F6B">
<a href="/display.html"><h1>Synth Display</h1></a>
</div>
</div>
</body>
</html>