-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.55 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
<!DOCTYPE html>
<html>
<head>
<title>Space Quest IO</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body style="overflow-x: hidden;">
<div class="loading" id="loadingText"></div>
<canvas id="canvas" width="800" height="600" style="position: absolute; left: 0px; top: 0px; z-index: 0"></canvas>
<canvas id="overlayCanvas" width="800" height="600" style="position: absolute; left: 0px; top: 0px; z-index: 1"></canvas>
<script data-main="dist/app" src="dist/require.min.js" onload="document.getElementById('loadingText').innerHTML = 'Loaded require.js<br/>'"></script>
<div
id="dialog"
style="
color: white;
position: absolute;
left: 0px;
top: 0px;
z-index: 3;
width: 100vw;
height: 100vh;
background-color: rgba(22, 45, 34, 0.341);
overflow-y: auto;
overflow-x: hidden;
"
></div>
<img src="resources/gear.svg" id="settingsIcon" class="settings unselectable" style="display: none" />
<div id="sideTray" class="unselectable">
<img src="resources/social.svg" id="socialIcon" style="display: none" />
<img src="resources/box.svg" id="cargoIcon" style="display: none" />
</div>
<input type="text" class="horizontal-center chatInputStyle" id="chatInput" />
<div id="dockedMessage" class="horizontal-center unselectable dockedMessageDisplayStyle" style="opacity: 0; display: none">
<h3 id="dockedMessageText" class="dockedMessageTextStyle"></h3>
</div>
</body>
</html>