-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
54 lines (49 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>redux-tab-sync</title>
<link rel="shortcut icon" href="http://redux.js.org/gitbook/images/favicon.ico" type="image/x-icon"/>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.28.0/mapbox-gl.css' rel='stylesheet' />
<style>
html {
font-family: Roboto, sans-serif;
}
input[type="range"],
input[type="text"]
{
width: 300px;
}
p, h1, h2 {
text-align: center;
}
hr {
border: none;
height: 1px;
background-color: #aaa;
width: 80%;
}
.map {
position:absolute;
top:0;
bottom:0;
width:100%;
}
.parts {
display: flex;
flex-direction: column;
align-items: center;
}
</style>
</head>
<body>
<div class="app">
</div>
<p>
<a href="https://github.com/Scarysize/redux-tab-sync">github</a>
</p>
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.28.0/mapbox-gl.js'></script>
<script src="build/bundle.js"></script>
</body>
</html>