-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (80 loc) · 2.85 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<title>SARS-CoV-2 Risikogebiete</title>
<link rel="shortcut icon" href="favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<style>
body {
margin: 0;
font-family: Lato, "Segoe UI", Roboto, Helvetica,
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
#content {
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
}
header {
margin: 0;
padding: 0.5em;
background-color: #8dbfe8;
}
h1 {
font-size: 3em;
font-variant: small-caps;
text-align: center;
margin: 0.2em;
}
h2 {
font-size: 2em;
text-align: center;
}
h4 {
font-size: 1em;
text-align: center;
}
a {
color: #174972;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#chartdiv {
width: 100%;
flex: 1;
}
</style>
</head>
<body>
<script src="libs/amcharts/core.js"></script>
<script src="libs/amcharts/maps.js"></script>
<script src="libs/amcharts/themes/animated.js"></script>
<script src="libs/amcharts/geodata/worldHigh.js"></script>
<script src="libs/amcharts/geodata/data/countries2.js"></script>
<script src="libs/amcharts/geodata/lang/DE.js"></script>
<script src="data.js?v=01-03-2022"></script>
<script src="main.js?v=06-08-2021"></script>
<div id="content">
<header>
<h1>Coronavirus Risikogebiete</h1>
<h2>Karte der SARS-CoV-2 Risikogebiete für Deutschland</h2>
<h4>
Quelle: <a href="https://www.rki.de/DE/Content/InfAZ/N/Neuartiges_Coronavirus/Risikogebiete_neu.html" target="blank">Robert-Koch-Institut</a> (Übertragungsfehler vorbehalten)
-
Stand: 01.03.2022, 21:00 Uhr
-
<a href="https://sbachstein.de/legal.html">Datenschutz/Impressum</a>
</h4>
</header>
<div id="chartdiv"></div>
</div>
</body>
</html>