-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 879 Bytes
/
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
<!DOCTYPE html>
<html lang="en" class="h-full m-0">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Montmorillon 1840</title>
<style>
#loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: white;
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
font: 24px 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.ol-osm {
filter: grayscale(100%);
}
</style>
</head>
<body class="h-full m-0">
<div id="loading">
<div class="text-lg font-semibold">Chargement...</div>
</div>
<div id="map" class="h-full w-full"></div>
<script type="module" src="./src/main.js"></script>
</body>
</html>