-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
97 lines (83 loc) · 2.74 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<link rel="apple-touch-icon" sizes="128x128" href="static/touch-icon-128x128.png"/>
<link rel="shortcut icon" href="static/favicon-16x16.png" type="image/png"/>
<link rel="shortcut icon" href="static/favicon-32x32.png" type="image/png"/>
<link rel="shortcut icon" href="static/favicon-196x196.png" type="image/png"/>
<link rel="manifest" href="/static/manifest.json"/>
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin=""/>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<link
rel="stylesheet"
type="text/css"
href="//github.com/downloads/lafeber/world-flags-sprite/flags32.css"
/>
<title>COVID-19</title>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="/__/firebase/8.2.3/firebase-app.js"></script>
<script src="/__/firebase/8.2.3/firebase-analytics.js"></script>
<!-- Initialize Firebase -->
<script src="/__/firebase/init.js"></script>
<!-- Chart.js -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
</body>
<style>
a.oncard:link {
color: white;
background-color: transparent;
text-decoration: none;
}
a.oncard:visited {
color: white;
background-color: transparent;
text-decoration: none;
}
a.oncard:hover {
color: white;
background-color: transparent;
text-decoration: underline;
}
a.oncard:active {
color: white;
background-color: transparent;
text-decoration: none;
}
.info {
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.info h4 {
margin: 0 0 5px;
color: #777;
}
.legend {
width: 95px;
line-height: 18px;
color: #555;
}
.legend i {
width: 20px;
height: 18px;
float: left;
margin-right: 8px;
opacity: 0.7;
}
</style>
</html>