forked from CIS700-Procedural-Graphics/Final-Project
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
25 lines (25 loc) · 846 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Voxel Run</title>
<style>
html, body {
margin: 0;
overflow: hidden;
background: rgb(196,224,229); /* For browsers that do not support gradients */
/*rgb(0, 201, 255), rgb(146, 254, 157)*/
background: -webkit-linear-gradient(rgb(55,95,130), rgb(124,162,166) ); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(rgb(55,95,130), rgb(124,162,166) ); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(rgb(55,95,130), rgb(124,162,166) ); /* For Firefox 3.6 to 15 */
background: linear-gradient(rgb(55,95,130), rgb(124,162,166) ); /* Standard syntax */
}
canvas {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<script src="bundle.js"></script>
</body>
</html>