-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (91 loc) · 3.11 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
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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>Super Sparty Bros.</title>
<style type="text/css">
body,td,th {
color: #FFF;
text-align:center;
}
body {
background-color: #000;
}
.menu li {list-style-type: none; margin-bottom:6px;}
.menuButton {
-moz-box-shadow:inset 0px 1px 0px 0px #1e5724;
-webkit-box-shadow:inset 0px 1px 0px 0px #1e5724;
box-shadow:inset 0px 1px 0px 0px #1e5724;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #18453b), color-stop(1, #11332b));
background:-moz-linear-gradient(top, #18453b 5%, #11332b 100%);
background:-webkit-linear-gradient(top, #18453b 5%, #11332b 100%);
background:-o-linear-gradient(top, #18453b 5%, #11332b 100%);
background:-ms-linear-gradient(top, #18453b 5%, #11332b 100%);
background:linear-gradient(to bottom, #18453b 5%, #11332b 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#18453b', endColorstr='#11332b',GradientType=0);
background-color:#18453b;
border:1px solid #18451d;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:13px;
font-weight:bold;
padding:6px 12px;
text-decoration:none;
width:25%;
}
.menuButton:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #11332b), color-stop(1, #18453b));
background:-moz-linear-gradient(top, #11332b 5%, #18453b 100%);
background:-webkit-linear-gradient(top, #11332b 5%, #18453b 100%);
background:-o-linear-gradient(top, #11332b 5%, #18453b 100%);
background:-ms-linear-gradient(top, #11332b 5%, #18453b 100%);
background:linear-gradient(to bottom, #11332b 5%, #18453b 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#11332b', endColorstr='#18453b',GradientType=0);
background-color:#11332b;
}
.menuButton:active {
position:relative;
top:1px;
}
.modifications {
display: inline-block
}
.modifications li {
text-align: left;
}
.image-border {
box-shadow: 0px 0px 0px 5px #000, 0px 0px 0px 10px #fff, 0px 0px 0px 15px #18453B;
margin: 5px;
}
</style> </head>
<body>
<h1>Super Sparty Bros.</h1>
<p>Created by Mohamed Abdel Aleem</p>
<img src="Screenshot.png" alt="" class="image-border" height="300" width="480">
<ul class="menu">
<li></li>
<li><a href="webgl/index.html" class="menuButton">Play WebGL Online</a></li>
<li><a href="level5_mac.zip" class="menuButton" download="download">Download Mac
Version</a></li>
<li><a href="Windows.zip" class="menuButton" download="download">Download
Windows Version</a></li>
</ul>
<div class="modifications">
<p>Game Description:</p>
<p>Collect coins, avoid enemies, and go for the rose!</p>
</div>
<br>
<div class="modifications">
<p>Game Modifications:</p>
<ol>
<li>Added Powerups as a new feature in the game</li>
<li>Added New sound effects</li>
<li>Made New levels</li>
<li>Made Use of extra pre existing prefabs in the project</li>
</ol>
</div>
<p>© Michigan State University. All Rights Reserved. </p>
</body>
</html>