-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 782 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>Composer by Eric Chiu</title>
<style>
html, body {
margin: 0;
overflow: hidden;
background: rgb(0, 0, 0); /* For browsers that do not support gradients */
background: -webkit-linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0) ); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0) ); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0) ); /* For Firefox 3.6 to 15 */
background: linear-gradient(rgb(0, 0 , 0), rgb(0, 0, 0) ); /* Standard syntax */
}
canvas {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<script src="bundle.js"></script>
</body>
</html>