-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (43 loc) · 1.21 KB
/
index.html
File metadata and controls
43 lines (43 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="/styles.scss">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Synth Explorer</title>
</head>
<body>
<div id="start-screen">
<button id="start-btn">Start</button>
</div>
<div id="main-screen">
<div id="progress-area">
<div id="progress-bar"></div>
</div>
<div id="top-row">
<h1>Synth Explorer</h1>
<button id="save-btn" class="inactive">Save</button>
<button id="evolve-btn" class="inactive">Evolve</button>
</div>
<div id="synth-row">
<!-- populated by JS -->
</div>
</div>
<div id="code-overlay">
<div id="code-box"></div>
<div id="code-btns">
<button id="code-close">
<img src="/img/close-svgrepo-com.svg">
</button>
<button id="code-copy">
<img src="/img/copy-svgrepo-com.svg">
</button>
<button id="code-save">
<img src="/img/download-from-cloud-svgrepo-com.svg">
</button>
</div>
</div>
<div id="cover"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>