-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 881 Bytes
/
Copy pathindex.html
File metadata and controls
44 lines (44 loc) · 881 Bytes
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
<!doctype html>
<html>
<head>
<meta charset='UTF-8' />
<title>Overture maps x deck.gl</title>
<style>
body, ul, li, h1, h2, h3 {
margin: 0;
padding: 0;
}
ul {
list-style-type: none;
margin-top: 10px;
}
body {
color: rgb(70, 70, 70);
font-family: Arial, sans-serif;
}
#map {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
#modal {
padding: 20px 30px;
background-color: whitesmoke;
border-radius: 2px;
position: fixed;
top: 20px;
left: 20px;
z-index: 9999999;
}
</style>
</head>
<body>
<div id="modal">
<div id="modal__content"></div>
</div>
<div id="map"></div>
<script type="module" src='app.js'></script>
</body>
</html>