-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
55 lines (53 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
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>vitling: Triple Saw</title>
<script type="module" src="triplesaw.js"></script>
<link href="https://fonts.googleapis.com/css?family=Share+Tech+Mono&display=swap" rel="stylesheet">
<meta property="og:title" content="Triple Saw" />
<meta property="og:type" content="music.song" />
<meta property="og:url" content="http://www.vitling.com/toys/triple_saw/" />
<meta property="og:image" content="http://www.vitling.com/images/triple_saw.jpg" />
<meta property="og:description" content="Infinite generative audiovisual composition on 3 sawtooth-oscillator pattern sequencers" />
<style type="text/css">
html, body {
height: 100%;
margin: 0;
overflow: hidden;
color:white;
background-color:black;
}
#wrapper {
min-height: 100%;
}
#startButton {
width: 100%;
height: 100%;
position: absolute;
z-index: 5;
background-color: #333;
color:white;
font-size:3em;
}
#source {
position:absolute;
z-index:50;
top:10px;
right:100px;
font-family: "Share Tech Mono", monospace
}
#source A {
color: white;
}
</style>
</head>
<body>
<div id="source">
<a href="http://github.com/Davw/triple-saw">Source Code</a>
</div>
<div id="wrapper">
<button id="startButton">Press to start</button>
</div>
</body>
</html>