-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 2.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SUPP? | Live Music. Tonight.</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,900,500" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="content">
<div class="landing">
<header class="header">
<h1 class="headline center-text">
SUPP?
</h1>
<h3 class="tagline center-text">Live music happening tonight.</h3>
</header>
<form class="center-text location" id="query">
<input type="text" name="city-query" class="location city text-input box-shadow" id="city" placeholder="Enter a City">
<input type="text" name="state-query" class="location state text-input box-shadow" id="state" placeholder="State or Country">
<input type="submit" class="submit location box-shadow">
</form>
</div>
<div class="loading-screen">
<header class="header">
<div class="spinner">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
</header>
</div>
<div class="fail-screen">
<header class="header">
<h1 class = "tagline center-text loading">
Nothing to show...
</h1>
<div class="reload">
<h2 class = "tagline center-text try-again">Try again</h2>
</div>
</header>
</div>
<div class="main-content">
<div class="supp-overlay">
<h1 class="overlay-header">SUPP?</h1>
</div>
<div class="map" id="map"></div>
<div class="show-listings">
<ul class="listings" id="listings"></ul>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.12.0/moment.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script src="js/app.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBO2XsTpH2jdho4euuM8uFmRB1qgXR9pp8&callback=initMap">
</script>
</body>
</html>