-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·85 lines (71 loc) · 2.04 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<link rel="icon" type="image/png" href="favicon.png" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>CIMO BSAS 2012 - CholuloApp</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<link rel="stylesheet" href="css/syle.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi?key=ABQIAAAAoeCzTyfkx60b1bnNIVt3bBSiTfHuFtDiWMaJo7M6xIExjO3KzhTJSRlEB4CCIexaGzzWE4zR-bvESQ"></script>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="js/main.js"></script>
<style type="text/css">
#map_canvas.fluid {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
height: 100%;
left: 0;
position: absolute;
width: 100%;
top: 60px;
z-index: 0;
overflow: hidden;
}
#header {
background: #FF0000;
border: 0px;
}
#header .brand {
display: block;
width: 100%;
height: 49px;
text-indent: -5000px;
background: url(assets/logo.png) no-repeat;
text-align: left;
margin: 5px;
}
.ui-header .ui-title, .ui-footer .ui-title {
margin: 0px;
}
#footer, #header{
width: 100%;
position: absolute;
z-index:2;
height:60px;
}
#footer{
bottom: 0;
}
p{
padding: 1px 2px 0;
margin: 0;
}
</style>
</head>
<body>
<div data-role="page">
<div id="header" data-role="header">
<h1 class="brand">Cholulo</h1>
</div>
<div data-role="content" id="map_canvas" class="fluid"></div>
<div data-role="footer" id="footer" class="data">
<p>Encontrá los lugares donde se está filmando en Buenos Aires</p>
</div>
</div>
</body>
</html>