-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (102 loc) · 3.51 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Machine Blitz</title>
<meta name="description" content="A Multiplayer Tower Defense Game">
<link rel="stylesheet" href="css/foundation.css" />
<link rel="stylesheet" href="css/style.css" />
<script src="js/vendor/modernizr.js"></script>
<link rel="icon" type="image/png" href="/img/pixeldome_X_LOGO.png">
<link href='http://fonts.googleapis.com/css?family=Oswald:300' rel='stylesheet' type='text/css'>
</head>
<body class="background">
<div class="row">
<div class="large-12 columns title-container">
<div class="title">
Machine Blitz
</div>
<div class="description">
Head-to-Head Tower Defense. Soon On Your Phone.
</div>
</div>
</div>
<div class="row" id="footer">
<div class="row">
<div class="small-4 columns">
</div>
<div class="medium-4 columns mailing-list">
<!-- Begin MailChimp Signup Form -->
<form action="//pixeldome.us9.list-manage.com/subscribe/post?u=73cd040eadbfce1efc96fd55d&id=476c61db85" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div class="row">
<div class="large-12 columns spacer">
</div>
</div>
<div class="row">
<div class="large-12 columns">
<h4 class= "join">Join our mailing list</h4>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div> <!-- real people should not fill this in and expect good things - do not remove this or risk form bot signups-->
<div style="position: absolute; left: -5000px;"><input type="text" name="b_73cd040eadbfce1efc96fd55d_476c61db85" tabindex="-1" value=""></div>
</div>
</div>
<div class="row collapse">
<div class="small-8 columns">
<input type="email" value="" name="EMAIL" class="required email mailinglistfont" placeholder="Your email address" id="mce-EMAIL">
</div>
<div class="small-4 columns ">
<input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button postfix mailinglistfont">
</div>
</div>
</form>
<!--End mc_embed_signup-->
</div>
<div class="small-4 columns">
</div>
</div>
<div class="row">
<div class="large-12 columns logo-container">
<img src="/img/pixeldome_machine_blitz_LOGO.png" class="logo" />
</div>
</div>
<div class="small-12 columns">
<a href="mailto:tudor@pixeldome.net" class= "contact-us">Contact us directly</a>
</div>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
$(window).bind("load", position_footer);
$(window).bind("resize", position_footer);
function position_footer()
{
var footer = $("#footer");
footer.css({
'top': 'auto'
});
var pos = footer.position();
var height = $(window).height();
height = height - pos.top;
height = height - footer.height();
height = height - 10;
if (height > 0)
{
footer.css({
'top': height + 'px'
});
}
console.log(height);
}
</script>
</body>
</html>