blob: c5cf71dbb93dbee2c6f9dc9549d196913ac33868 (
plain)
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
|
<html>
<head>
<title>spectral</title>
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=yes;">
<style>
* {
box-sizing: border-box;
}
html,body {
background: #eee;
margin: 0; padding: 0;
overflow: hidden;
-webkit-overflow-scrolling: auto;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
user-select: none;
}
html {
background: red;
}
#header {
position: fixed;
bottom: 20px; left: 0;
width: 100%;
color: #000;
font-size: 16px;
font-weight: 100;
text-align: center;
z-index: 20;
pointer-events: none;
}
canvas {
position: absolute;
top: 0; left: 0;
}
</style>
</head>
<body>
<div id="header">spectral synthesis testbed</div>
</body>
<script src='bundle.js'></script>
</html>
|