-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (45 loc) · 1.28 KB
/
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
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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,300" rel="stylesheet" type="text/css">
<title>the liniverse</title>
<style>
body {
margin: 0;
padding: 0;
background-color: black;
color: white;
font-family: 'Open Sans';
}
#controls {
display: flex;
flex-direction: row;
}
#canvas {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
display: block;
border: 1px solid magenta;
}
#fps {
border: 1px solid lightgray;
padding: 5px;
}
</style>
</head>
<body>
<div id="app-wrapper">
<div id="controls">
<button id="restart-btn">↻</button>
<button id="play-pause-btn">▶</button>
<div id="fps"></div>
</div>
<canvas id="canvas" />
</div>
</body>
</html>