-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (91 loc) · 3.28 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
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Get Notipon. Be Less Busy.</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.1/css/bootstrap.min.css" rel="stylesheet">
<style>
#mainContainer {
font-family: Arial, Helvetica, sans-serif, 'Architects Daughter', cursive;
color: #0a060a;
margin-top: 50px;
/*
position: absolute;
width: 330px;
top: 50px;
right: 100px;*/
}
#mainDescription {
background-color: rgba(233, 233, 233, 0.6);
border-radius: 25px;
padding: 0px 20px 20px;
}
section {
font-size: 1.5em;
margin-top: 30px;
}
section div {
margin: 20px 0px 0px;
}
#picContainer {
position: relative;
}
.home-phones {
left: 0px;
bottom: 46px;
width: 318px;
height: 510px;
margin-left: 4px;
background: url(http://d36xtkk24g8jdx.cloudfront.net/bluebar/b05105e/images/homepage/home-phones.png) 0px 0px no-repeat;
}
#iphone-overlay {
position: absolute;
top: 79px;
left: 117px;
}
#iphone-overlay img {
position: absolute;
z-index: 10;
width: 200px;
}
</style>
</head>
<body>
<div class='container' id='mainContainer'>
<div class='row'>
<div id='picContainer' class='col-xs-1 col-sm-6 col-md-5 col-md-offset-1 col-lg-4 col-lg-offset-2'>
<div class='home-phones hidden-xs'>
<div id='iphone-overlay'>
<img src="//d36xtkk24g8jdx.cloudfront.net/bluebar/b05105e/images/homepage/screenshot1.jpg">
</div>
</div>
</div>
<div id='mainDescription' class='col-xs-10 col-sm-5 col-md-4 col-lg-4'>
<header>
<h1>
<img src="assets/logo.png" width="50" height="50"/>
Be Less Busy. </h1>
</header>
<section>
<div>You wait in traffic and<br/>You wash the dishes and<br/>You can never find daily deals when you need them!</div>
<div>Or you can get Notipon and daily deals will find you.</div>
</section>
<section>
<a class='btn btn-lg btn-primary btn-block'>Get Notipon</a>
</section>
</div>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.2.min.js"><\/script>')</script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-backstretch/2.0.4/jquery.backstretch.min.js"></script>
<script>
var gif = 'http://25.media.tumblr.com/00d3f2656cebd1aaa72eac40155ee0d2/tumblr_mu5tqn25nA1rf03g0o1_500.gif';
$.backstretch(gif);
</script>
</body>
</html>