-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
72 lines (64 loc) · 2.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>StreamGraph Explorer</title>
<link rel="stylesheet" href="https://unpkg.com/dataviz-styleguide/semantic/dist/semantic.min.css">
</head>
<body>
<div id="container">
<br/>
<div class="ui grid unhcr-header unhcr-header-style3">
<img class="unhcr-header-logo" src="images/unhcr-logo-horizontal.svg">
<div class="unhcr-header-title">
<h1>Dataviz</h1>
<h2>Streamgraph Explorer</h2>
<h3>Evolution of persons of concern over timer</h3>
</div>
<div class="unhcr-header-social">
<a href="https://github.com/unhcr/dataviz-streamgraph-explorer" target="_blank" title="View on GitHub"><i class="github square icon"></i></a>
</div>
</div>
<div class="ui stackable two column grid" style="margin-top: 0px;">
<div class="twelve wide column">
<div class="ui statistic"><div class="label">Filter Population Types</div></div>
<!--
The type selector buttons will be injected here.
See src/typeSelector.js.
-->
<div id="typeSelector"></div>
<!--
The visualization components that are in the
"focus" panel will be injected into this DIV.
-->
<div id="focus"></div>
</div>
<div class="four wide column">
<div class="ui statistic">
<div class="label">Selected year</div>
<div id="details-selected-year" class="value"></div>
<div id="details-statistic-label" class="label"></div>
<div id="details-statistic-value" class="value"></div>
<div id="details-bars-label" class="label"></div>
</div>
<!--
The visualization components that are in the
"details" panel will be injected into this DIV.
-->
<div id="details"></div>
</div>
</div>
</div>
<script src="dist/bundle.js"></script>
</body>
</html>
<style>
#container {
padding: 0px 10px;
}
.column {
margin-top: 0px;
padding-top: 2px !important;
}
</style>