-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
55 lines (55 loc) · 1.86 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>AoC Ranking</title>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:300&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="ranking.css">
<style>
body {
margin: 0;
padding: 0;
background-color: #0f0f23;
font-family: "Source Code Pro", monospace;
font-size: 14px;
color: #cccccc;
overflow: hidden;
}
h1, h1 a {
font-size: 20px;
color: #00cc00;
text-shadow: 0 0 2px #00cc00, 0 0 5px #00cc00;
text-align: center;
}
a {
text-decoration: none;
color: #009900;
}
a:hover {
color: #99ff99;
}
#attrib {
position: absolute;
bottom: 0px;
width: 100%;
padding: 10px;
font-size: 10px;
color: #cccccc;
text-align: center;
}
#chart {
height: calc(100vh - 100px);
}
</style>
</head>
<body>
<h1>Advent of Code - Example Private Leaderboard Ranking Visualization - Follow Xebia at <a href="https://xebia.com/community/advent-of-code">#XebiaAoC</a></h1>
<div id="chart"></div>
<div id="attrib">
Created by <a href="https://github.com/amochtar/aoc-ranking">Adé Mochtar</a>
Inspired by <a href="http://www.vislives.com/2012/03/d3-lap-charts.html">F1 Lap Chart</a>
</div>
<script src="data.js"></script>
<script src="ranking.js"></script>
</body>
</html>