-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (55 loc) · 1.3 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
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<link rel="shortcut icon" type="image/ico" href="assets/favicon.ico"/>
<head>
<title>Hourglass</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
color: #fff;
font-family: Monospace;
font-size: 13px;
text-align: center;
font-weight: bold;
background-color: rgba(0,0,0,0.0);
margin: 0px;
overflow: hidden;
}
/*
body > * {
background:#7f7f7f;
}
*/
.custom-buttom {
cursor: default;
color: ButtonText;
background: ButtonFace ;
position: absolute;
right: 0px;
font-size: 4vh;
border: 1vh outset WindowFrame ;
width: 4vh;
}
.message-box {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
background:#7f7f7f;
position: absolute;
text-align: left;
bottom: 0vh;
}
</style>
<script src="js/jquery.js"></script>
<script src="js/three.js"></script>
<script src="js/OrbitControls.js"></script>
<script src="js/actors.js"></script>
<script src="js/engine.js"></script>
<script src="js/index.js"></script>
<script src="js/dat.gui.js"></script>
</head>
<body>
</body>
</html>