-
Notifications
You must be signed in to change notification settings - Fork 61
/
dev.html
68 lines (56 loc) · 1.44 KB
/
dev.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
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<style>
html,body{
height: 100%;
overflow: hidden;
}
body{
background-color: black;
margin: 0;
padding: 0;
}
canvas{
margin: auto;
display: block;
cursor: url(./skin/amiga_cursor.png) 1 2, auto;
}
canvas:focus {
outline:none;
}
.message{
font-family: sans-serif;
position: absolute;
left: 0;
right: 0;
top: 0;
min-height: 30px;
padding: 20px;
background-color: rgba(243,33,70,0.5);
color: rgba(255, 255, 255, 0.8);
text-align: center;
}
.message a{
color: white;
}
.message button{
padding: 10px 20px;
border-radius: 10px;
}
</style>
<title>BassoonTracker - Amiga music tracker</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width user-scalable=no">
<link rel="manifest" href="./manifest.json">
<meta name="mobile-web-app-capable" content="yes">
<script>
window.versionNumber = '{version}';
window.buildNumber = '{build}';
</script>
<script src="script/src/main.js?v{build}" type="module"></script>
</head>
<body>
<canvas id="canvas" tabindex='1'></canvas>
</body>
</html>