-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
93 lines (82 loc) · 2.19 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
93
<!DOCTYPE html>
<html>
<head>
<title>#1GAM: Where The Fuck Is My Brain?</title>
<meta property="og:title" content="#1GAM: Where The Fuck Is My Brain?" />
<meta property="og:image" content="http://www.myyyvothrr.de/1gam/brain2/ogam1_screenshot_20.png" />
<meta property="og:description" content="January and february game for #1GAM - 2d platformer" />
<link rel="canonical" href="http://www.myyyvothrr.de/1gam/brain2/" />
<link rel="icon" href="http://www.myyyvothrr.de/1gam/brain2/favicon5.ico" type="image/x-icon">
<style type="text/css">
html
{
font-size: 100%;
margin: 0;
padding: 0;
}
body
{
margin: 0;
padding: 0;
font-size: 0.75em;
font-family: Helvetica, Arial, sans-serif;
line-height: 1.4;
background-color: #1a1a1a;
}
#info
{
position: absolute;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 800px;
text-align: center;
}
p
{
color: #f86000;
font-size: 1.25em;
margin: 0;
padding: 0;
-moz-text-shadow: 0 -1px 1px #000;
-webkit-text-shadow: 0 -1px 1px #000;
text-shadow: 0 -1px 1px #000;
}
a
{
color: #f89800;
font-weight: normal;
}
a:hover
{
color: #f8c800;
}
#canvas
{
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
border: 2px solid #f86000;
-moz-box-shadow: 3px -3px 3px #000;
-webkit-box-shadow: 3px -3px 3px #000;
box-shadow: 3px -3px 3px #000;
z-index: 1000;
}
</style>
<script type="text/javascript" src="lib/impact/impact.js"></script>
<script type="text/javascript" src="lib/game/main.js"></script>
</head>
<body>
<canvas id="canvas"></canvas>
<div id="info">
<p>You can play, comment and rate it <a href="http://gamejolt.com/games/platformer/where-the-fuck-is-my-brain/12319/">on Game Jolt</a>.</p>
<p>And the sourcecode is <a href="https://github.com/Myyyvothrr/1gam-brain">on GitHub</a>.</p>
<a href="http://www.myyyvothrr.de"><img src="http://www.myyyvothrr.de/favicon.ico" width="32" height="32" /></a></p>
<p>© 2013 Daniel Baumartz - <a href="http://www.myyyvothrr.de">Myyyvothrr.de</a></p>
</div>
</body>
</html>