-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (34 loc) · 983 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Infographic</title>
<script src="lodash.js"></script>
<script src="cycle.js"></script>
<style>
table { border-collapse: collapse; }
th, td { text-align: center; padding: 0.1em 1em; }
polygon { mix-blend-mode: normal; }
svg text { font-family: sans-serif; }
.toolbar {
margin-top: 0.2em;
padding-top: 0.2em;
border-top: 1px solid #ccc;
}
tr, p, li, label {
font-size: 14px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, 'Lato', sans-serif;
}
</style>
</head>
<body>
<div id="container">
</div>
<div id="description">
<ul>
<li>There could be up to 30 rows</li>
<li>But only 6 of them can be visible</li>
</ul>
</body>
<script src="graafi.js"></script>
</html>