-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
137 lines (116 loc) · 3.59 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
<html>
<head>
<link rel="stylesheet" href="foundation.css" />
<style type="text/css">
#wrapper { position: relative; }
#movie-info {
float: right;
background-color: #1a1917;
color:white;
/*position: absolute;*/
top: 10px;
left: 10px;
z-index: 99; }
/*html, body, #map-canvas { height: 100%; margin: 0; padding: 0;}*/
/*#movie-info { height: 25%;}*/
#map-canvas { height: 100%; margin: 0; padding: 0;}
.has-form {
position: absolute;
top: 0;
left: 6rem;
min-width: 14rem; }
@media only screen and (max-width: 40em) {
.has-form {
min-width: 10rem;
top: 0.5rem; }
.has-form .button {
height: 1.85rem; } }
a {
color: #ff7f00;
}
.footer {
@include panel($panel-color, $panel-padding);
width: 100%;
margin: 0;
position: fixed;
bottom: 0;
background-color: #1a1917
}
#developer_list_footer {
max-width: none;
width: 100%;
}
#developer_list_footer ul {
list-style: none;
position: relative;
float: left;
display: block;
left: 20%;
}
.inline-list {
margin:0.5rem 0.5rem 0.5rem;
}
</style>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="https://cdn.firebase.com/js/client/2.2.7/firebase.js"></script>
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAh-L2_rpdgzXHVAxXetN496UR8HR9mFTM
">
</script>
<script src="search-by-title.js"></script>
<script src="rsvp.min.js"></script>
<script src="geofire.min.js"></script>
<script src="lodash.min.js"></script>
<script src="draggable-movie-search.js"></script>
<script src="mapper.js"></script>
</head>
<body style="background-color:#1a1917; height:auto">
<nav class="top-bar" data-topbar role="navigation">
<ul class="title-area">
<li class="name">
<h1><a href="#">Search</a></h1>
</li>
<li class="has-form">
<div class="row collapse">
<div class="large-8 small-9 columns">
<form id="title-form">
<input type="text" id="title" name="title" placeholder=" Movie Titles">
</div>
<div class="large-4 small-3 columns">
<button type="submit" id="submit-title">Go</button>
<!-- <a href="#" class="alert button expand">Go</a>-->
</div>
</form>
</div>
</li>
</ul>
<!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone -->
<section class="top-bar-section">
<ul class="right">
<li class="top-bar right"><a href="#"><img style="height:45px" src='./static/movie_imgs.jpg'/></a></li>
<li class="top-bar right"><a href="#"><span style="font-size: 2em; color: #ff7f00">Movie Mapper</span></a></li>
</ul>
</section>
</nav>
<!-- <form id="title-form"> -->
<!-- <label> -->
<!-- <input type="text" id="title" name="title"> -->
<!-- </label> -->
<!-- <button type="submit" id="submit-title">Enter movie title</button> -->
<!-- </form> -->
<div id="movie-info">
</div>
<div id="map-canvas"></div>
<div id="developer_list_footer" class="row footer">
<div class="twelve columns" style=style="background-color:#1a1917; height:30px; bottom:0;">
<ul class="inline-list">
<li style="color:white">Developers:</li>
<li><a href="https://www.linkedin.com/in/arianapromessi">Ariana Promessi</a></li>
<li><a href="https://www.linkedin.com/in/alenajk">Alena Kuczynski</a></li>
<li><a href="https://www.linkedin.com/in/angelacastanieto">Angela Castanieto</a></li>
<li><a href="https://www.linkedin.com/in/tiffanywilliamsphd">Tiffany Williams</a></li>
</ul>
</div>
</div>
</body>
</html>