-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
90 lines (78 loc) · 1.71 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="noindex" />
<title>NY Eviction Filings Tracker</title>
<style>
html,
body,
input,
select {
font-family: "Helvetica Neue", "Arial", sans-serif;
font-size: 20px;
margin-right: 10px;
}
body {
margin: 0;
}
html body .vega-embed .chart-wrapper {
/**
* This overrides vega's default height of 100%, which
* results in way too much room between the charts.
*/
height: auto;
}
input[type="radio"] {
margin-right: 5px;
}
small {
font-size: 0.65rem;
display: block;
max-width: 750px;
}
.container {
max-width: 1000px;
margin: 2.5rem;
}
.viz-geo {
width: 100%;
height: 640px;
}
.viz-time-series {
width: 100%;
}
.viz-time-series-short {
height: 300px;
}
.loading {
display: flex;
justify-content: center;
align-items: center;
}
table,
th,
td {
border: 1px solid black;
border-collapse: collapse;
padding: 5px;
}
.pie-chart-section {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.pie-chart {
margin: 20px;
}
</style>
<script>
var parcelRequire;
</script>
</head>
<body>
<div id="app"><div class="container">Loading…</div></div>
<script src="./src/main.tsx" type="module"></script>
</body>
</html>