forked from thatswhatyouget/tpp-progress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables.html
67 lines (63 loc) · 2.57 KB
/
tables.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
<html>
<head>
<title>TPP Progress Chart</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.7.0/react.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.6.0/react-dom.min.js"></script>
<script src="transforms/tpp-transforms.js"></script>
<script src="bin/tpp-structure.js"></script>
<script src="bin/twitch-videos.js"></script>
<script src="bin/tpp-progress.js"></script>
<script src="bin/tpp-scraper.js"></script>
<script src="bin/tpp-data.js"></script>
<script src="bin/pokedex-data.js"></script>
<script src="bin/tables.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/tpp-progress.css" />
<link rel="stylesheet" href="css/pokemon.css" />
<link rel="icon" href="img/icon.png" type="image/png">
<link rel="shortcut icon" href="img/icon.png" type="image/png">
<meta property="og:title" content="TPP Progress Chart" />
<meta property="og:url" content="http://thatswhatyouget.github.io/tpp-progress/" />
<meta property="og:image" content="http://thatswhatyouget.github.io/tpp-progress/img/icon.png" />
<meta property="og:type" content="website" />
<meta charset="utf-8" />
<style>
.tables table {
background-color:white;
border-collapse: collapse;
border: 1px solid black;
margin:auto;
font-family: pokeplatinum, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.tables table td, .tables table th {
border: 1px solid black;
border-color:inherit;
min-width:10%;
}
</style>
</head>
<body>
<div class="title">
<h1>Twitch Plays Pokemon</h1>
<div class="subtitle">
Progress Tables
<a href="index.html">See Progress Chart</a>
</div>
</div>
<div class="title">
<strong>Progress Chart</strong>
<div class="credits">
<span class="doItLive">Most</span> run data provided by <a href="http://twitchplayspokemon.org/" target="_blank">twitchplayspokemon.org</a>.
</div>
</div>
<div class="tables" id="runSummary">
<h3>Run Summary</h3>
<script>$("#runSummary").append(generateRunSummary(tppData));</script>
</div>
<div class="tables" id="pokedexSummary">
<h3>Species Owned</h3>
<script>$("#pokedexSummary").append(generatePokedexSummary(tppData));</script>
</div>
</body>
</html>