-
Notifications
You must be signed in to change notification settings - Fork 42
/
index.html
47 lines (40 loc) · 1.32 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Civilian Harm in Ukraine Timemap - Bellingcat</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://api.mapbox.com/mapbox.js/v3.1.1/mapbox.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script defer data-domain="ukraine.bellingcat.com" src="https://plausible.io/js/script.js"></script>
<!-- Styles are always go to the head, never the body -->
<style>
@media (hover: none) {
#id {
display: none;
}
#nodisplay {
display: block;
}
}
@media (hover: hover) {
#nodisplay {
display: none;
}
}
</style>
</head>
<body>
<div class="page">
<div id="explore-app"></div>
<div id="nodisplay">
If you see this message wait up to 30s, otherwise please revisit on a desktop device.
</div>
</div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>