-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (76 loc) · 2.14 KB
/
Copy pathindex.html
File metadata and controls
86 lines (76 loc) · 2.14 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>In The Fallen Station</title>
<link rel="stylesheet" href="css/resetstyle.css">
<style>
#indexDivHealth{
height: auto;
margin: 615px 15px 0px 15px;
/* float: left; */
/* flex-grow: 1; */
}
#indexDivHealth p{
color: silver;
width: 200px;
font-size: 20px;
line-height: 25px;
text-align: right;
white-space: pre;
font-family: Cochin,Georgia,Cambria,Times, 'Times New Roman', serif;
}
#indexPlayerHealth{
color: white;
}
/* #indexCynthiaHealth{
}
#indexLotHealth{
}
*/
#indexNotes{
color: gainsboro;
width: 200px;
/* height: 600px; */
height: inherit;
margin: 75px 15px 0px 12px;
float: left;
text-align: left;
white-space: pre-wrap;
font-family: Cochin,Georgia,Cambria,Times, 'Times New Roman', serif;
}
#indexNotes-h1{
font-size: 25px;
line-height: 30px;
margin: 0;
padding: 0;
}
#indexNotes-p{
font-size: 17px;
line-height: 30px;
margin: 0;
padding: 0;
}
#myGame{
width: 800px;
float: left;
margin: 75px 0px 0px 0px;
float: left;
}
</style>
</head>
<body style="background-color: rgba(10,10,10,1); display: flex; justify-content: center;">
<div id="indexDivHealth">
<p id="indexPlayerHealth">Loading Player</p>
<p id="indexCynthiaHealth">Loading Cynthia</p>
<p id="indexLotHealth">Loading Lot</p>
</div>
<div id='myGame'></div>
<script type="module" src="./lib/phaser.js"></script>
<script type="module" src="./src/main.js"></script>
<div id="indexNotes">
<h1 id="indexNotes-h1">Loading index notes title</h1>
<p id="indexNotes-p">Loading index notes p</p>
</div>
</body>
</html>