-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
50 lines (50 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" type="image/ico" href="/src/assets/favicon.ico" />
<title>Magrit - Thematic cartography</title>
<style>
body { margin: 0; }
.loader-container {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2em;
background-color: white;
color: black;
font-family: sans-serif;
}
.init-loader {
border: 16px solid #f3f3f3;
border-top: 16px solid #3498db;
border-radius: 50%;
width: 130px;
height: 130px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root">
<div class="loader-container">
<div>
<img src="/src/assets/cartouche_baseline_black.png" alt="Magrit logo" />
</div>
<div class="init-loader"></div>
<div>Merci de patienter pendant le chargement de l'application...</div>
</div>
</div>
<!-- # INSERT SCRIPT HERE -->
<script src="/src/index.tsx" type="module"></script>
</body>
</html>