-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (98 loc) · 3.48 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
<!doctype html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Space Is Huge</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript" src="spacestuff.js"></script>
<script type="text/javascript" src="space.js"></script>
<link href="css/scaffolding.css" rel="stylesheet">
<style type="text/css">
body { background: #000; }
#container { width: 100%; background: url(spacestuff/universe.jpg) top center #000; position: relative; }
#title { padding-top: 100px; }
h1 {
font-size:90px;
text-align: center;
background: url(img/logo.png) no-repeat top left;
width: 529px;
height: 165px;
text-indent: -9999px;
margin: auto;
}
.earth {
width: 100%;
height: 479px;
background: url(img/earth.png) center top no-repeat;
margin: auto;
position: relative;
}
.earth .launch {
position: absolute;
bottom: 0;
padding: 60px 0;
}
.launch p {
color: #5b6c91;
line-height: 17px;
}
.launch p strong { color: #fff; }
.launch .code {
border: 1px solid #5b6c91;
background: #000;
color: #5b6c91;
height: 30px;
font-family: "Helvetica Neue", Helvetica, Arial, Sans-Serif;
outline: none;
}
.launch iframe { margin-left: 50px !important; }
#github {
display: block;
position: absolute;
right: 0;
bottom: 0;
width: 141px;
height: 141px;
}
</style>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-28552914-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="container">
<div id="title">
<h1>Space Is Huge</h1>
<div class="earth">
<div class="container">
<div class="launch">
<div class="row">
<div class="span1">
<a href="#"><img src="img/icon-info.png" alt="About Space is Huge" width="35" height="35" border="0"></a>
</div>
<div class="span8">
<p><strong>Space is Huge</strong> is a javascript plugin that adds the beauty of infinite space to any webpage. Copy this code and paste into the head of your site.</p>
</div>
<div class="span4">
<input class="code span5" type="text" value='<script src="http://spaceishuge.com/space.js"></script>'>
</div>
<div class="span3">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://spaceishuge.com" data-via="spaceishuge" data-related="spaceishuge">Tweet</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
</div>
</div>
</div>
</div>
</div>
<!--<a id="github" href="https://github.com/mikeocool/Space-Is-Huge"><img src="img/github-ribbon.png" alt="Fork me on Github" width="141" height="141" border="0"></a>-->
</div>
</body>
</html>