forked from Knight-Mozilla/finden
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
137 lines (96 loc) · 3.02 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html>
<head>
<title>finden</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="dist/leaflet.css" />
<link rel="stylesheet" href="jquery-ui/themes/base/jquery.ui.all.css">
<link rel="stylesheet" href="jquery-ui/demos/demos.css">
<link rel="stylesheet" href="css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="css/twitter.css" rel="stylesheet">
<!--[if lte IE 8]><link rel="stylesheet" href="../dist/leaflet.ie.css" /><![endif]-->
<style type="text/css">
html, body{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
span{
float:left;
}
div{
clear: both;
float:left;
}
#options{
width:100%;
height: 40px;
}
.container{
width:100%;
}
.ribbon {
background-color: #5E92A3;
overflow: hidden;
/* bottom left corner */
position: absolute;
left: -3em;
bottom: 2.5em;
/* 45 deg ccw rotation */
-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
/* shadow */
-moz-box-shadow: 0 0 1em #888;
-webkit-box-shadow: 0 0 1em #888;
}
.ribbon a {
border: 1px solid #588897;
color: #fff;
display: block;
font: bold 81.25% 'Helvetiva Neue', Helvetica, Arial, sans-serif;
margin: 0.05em 0 0.075em 0;
padding: 0.5em 3.5em;
text-align: center;
text-decoration: none;
/* shadow */
text-shadow: 0 0 0.5em #444;
}
.stream-item{
border-bottom: 1px solid #ebebeb;
border-top: 1px solid transparent;
padding-top: 10px;
clear: both;
display: block;
margin-top: -1px;
min-height: 70px;
outline: none;
position: relative;
}
</style>
<script src="js/modernizr.js"></script>
</head>
<body>
<div class="topbar" style="width:100%;">
<div class="fill" style="width:100%;">
<form class="pull-left" action="">
<h2 style="color:#fff; width: 600px; float:left;">find tweets within your area.</h2>
<h2 style="float:right; right:0; width: 200px; margin-left: 180px; color:#fff;"></h2>
</form>
</div>
</div>
</div>
<div id="map" style="width: 60%; bottom:0px; top:40px; position:absolute;"></div>
<div id="resultsContainer" style="width:40%; right:0; top:40px; bottom:0px; position:absolute;">
<div id="new-tweets-bar" class="js-new-tweets-bar" style="width:93%; text-align:center; display:none;">test</div>
<div id="results" style="width:100%; height:100%; overflow:auto; margin-top: 10px;"></div>
</div>
<div class="ribbon">
<a href="https://github.com/coleGillespie/finden" rel="me">Fork me on GitHub</a>
</div>
<script src="dist/leaflet.js"></script>
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>