forked from ZacNeu/COMP324-Web-Game-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLoad_Game.html
105 lines (85 loc) · 3.15 KB
/
Load_Game.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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<title>Load Game</title>
<meta content="text/html; charset=utf-8"/>
</head>
<body>
<div class="Background_Color_Top"></div>
<div class="Background_Color_Bottom"></div>
<div class="Heading"><h1>Load Game</h1></div>
<div class="Save_Slot_Container">
<a href=""><div class="Save_Slot"><p1> <!--TODO add link to Save Game 1-->
File 1
</p1><div class="Save_Game_Stats">
No Info Found! <!--TODO palceholder-add messgae depending on data-->
</div></div></a>
<a href=""><div class="Save_Slot"><p1> <!--TODO add link to Save Game 2-->
File 2
</p1><div class="Save_Game_Stats">
No Info Found! <!--TODO palceholder-add messgae depending on data-->
</div></div></a>
<a href=""><div class="Save_Slot"><p1> <!--TODO add link to Save Game 3-->
File 3
</p1><div class="Save_Game_Stats">
No Info Found! <!--TODO palceholder-add messgae depending on data-->
</div></div></a>
</div>
<style>
div.Save_Slot_Container {
display: grid;
grid-row-gap: 2em;
height: 17em;
width: 97vw;
position: relative;
top:8em;
}
div.Save_Slot {
background-color: darkkhaki;
border: solid 3px rgb(158, 120, 23);
align-self: flex-start;
height: 4em;
}
div.Heading{
height:5em;
width:15em;
position: relative;
margin: 0 auto;
top: 1em;
border: 3px solid rgb(136, 0, 0);
text-align: center;
background-color: rgb(160, 105, 105);
font-size: 50;
}
div.Save_Game_Stats{
text-align: start;
position: absolute;
border: 2px solid black;
height: 2.2em;
width: 15em;
right: 1em;
}
div.Background_Color_Top{
position: fixed;
background-color: rgb(0, 110, 255); /*TODO -- possibly change color*/
width: 100vw;
height: 50vh;
}
div.Background_Color_Bottom{
position: fixed;
top: 50vh;
background-color: rgb(0, 255, 191); /*TODO -- possibly change color*/
width: 100vw;
height: 50vh;
}
p1{
position:relative;
left: 1em;
top: 1em;
color: darkred;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 20px;
}
</style>
</body>
</html>