-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (114 loc) · 4.52 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<html>
<head>
<meta charset=UTF-8>
<meta property="og:url" content="https://coviddeaths.us" />
<meta property="og:title" content="American COVID-19 Deaths" />
<meta property="og:description" content="Visualizing COVID-19 deaths in America." />
<meta property="og:image" content="https://raw.githubusercontent.com/kuang/covid19-us-deaths-by-day/main/preview.png" />
<meta name="description" content="Visualizing COVID-19 deaths in America.">
<meta name="author" content="Justin Kuang">
<head>
<title>American COVID-19 Deaths</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-H61BK5DGKQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-H61BK5DGKQ');
</script>
<link href="https://fonts.googleapis.com/css2?family=B612&display=swap" rel="stylesheet">
<link rel="icon" href="icon.png">
</head>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="data.js"></script>
<style>
body {
font-family: 'B612', sans-serif;
}
@media (min-width: 320px) {
.header {
margin-left: 10%;
margin-right: 10%;
margin-top: 5%;
text-align: left;
font-size: 20px;
}
.legend {
margin-left: 10%;
margin-right: 10%;
margin-top: 5%;
text-align: left;
font-size: 10px;
}
}
@media (min-width: 1025px) {
.header {
margin-left: 10%;
margin-right: 20%;
margin-top: 5%;
text-align: left;
font-size: 40px;
}
.legend {
margin-left: 10%;
margin-right: 10%;
margin-top: 0;
text-align: left;
font-size: 15px;
}
}
.month_header {
margin-left: 10%;
margin-top: 5%;
text-align: left;
}
.canvas {
margin-left: 10%;
margin-right: 10%;
width: 80%;
}
#vote {
margin-top: 10%;
margin-right: 10%;
}
#info {
margin-top: 20%;
}
</style>
</head>
<body>
<h1 id="title" class="header"></h1>
<h1 id="total_deaths" class="header"></h1>
<h4 id="dot_legend" class="legend">each dot = one life- an American who left behind family, ambition and dreams.
</h4>
<h4 id="row_legend" class="legend">each row = 100 lives.</h4>
<h2 class="month_header" id="yesterday_header"></h2>
<canvas id="yesterday" class="canvas"></canvas>
<h2 class="month_header" id="january_2021_header">January 2021</h2>
<canvas id="january_2021" class="canvas"></canvas>
<h2 class="month_header" id="december_2020_header">December 2020</h2>
<canvas id="december_2020" class="canvas"></canvas>
<h2 class="month_header" id="november_2020_header">November 2020</h2>
<canvas id="november_2020" class="canvas"></canvas>
<h2 class="month_header" id="october_2020_header">October 2020</h2>
<canvas id="october_2020" class="canvas"></canvas>
<h2 class="month_header" id="september_2020_header">September 2020</h2>
<canvas id="september_2020" class="canvas"></canvas>
<h2 class="month_header" id="august_2020_header">August 2020</h2>
<canvas id="august_2020" class="canvas"></canvas>
<h2 class="month_header" id="july_2020_header">July 2020</h2>
<canvas id="july_2020" class="canvas"></canvas>
<h2 class="month_header" id="june_2020_header">June 2020</h2>
<canvas id="june_2020" class="canvas"></canvas>
<h2 class="month_header" id="may_2020_header">May 2020</h2>
<canvas id="may_2020" class="canvas"></canvas>
<h2 class="month_header" id="april_2020_header">April 2020</h2>
<canvas id="april_2020" class="canvas"></canvas>
<h2 class="month_header" id="march_2020_header">March 2020</h2>
<canvas id="march_2020" class="canvas"></canvas>
<h2 class="month_header" id="february_2020_header">February 2020</h2>
<canvas id="february_2020" class="canvas"></canvas>
<h5 class="month_header" id="info">built by <a href="https://twitter.com/justkuang">Justin Kuang</a></h5>
</body>
</html>