-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (33 loc) · 953 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Document</title><style>body {
background-color: black;
box-sizing: border-box;
}
body * {
box-sizing: border-box;
}
canvas {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
/* width: 100%;
height: 100%; */
}
.controls {
display: flex;
flex-direction: column;
position: fixed;
top: 0;
z-index: 10;
opacity: 0.5;
}
.continents-controls {
left: 0;
}
.land-controls {
left: 50%;
transform: translateX(-50%);
}
.local-controls {
right: 0;
}</style><script defer="defer" src="main.js"></script></head><body><canvas id="viewport" width="512" height="512"></canvas></body></html>