-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpips.html
130 lines (111 loc) · 2.98 KB
/
pips.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<style>
@font-face {
font-family: bryantreg;
src: url(fonts/BryantPro-Regular.otf);
}
@font-face {
font-family: bryantbold;
src: url(fonts/BryantPro-Bold.otf);
}
body {
/* font-family: museo-sans-rounded, sans-serif; */
font-size: 1vmin;
margin: 0;
overflow-x: hidden;
/* overflow: hidden; */
}
.ActionsSlice{
stroke: #fff;
stroke-width: 1px;
cursor: pointer;
}
.EarnedSlice{
stroke: #fff;
stroke-width: 1px;
cursor: pointer;
}
.slice .hidden-arc {
fill: none;
}
.ActionsSlice text {
pointer-events: none;
dominant-baseline: middle;
text-anchor: middle;
}
tspan:last-child {
font-size: 1vmin;
fill-opacity: 0.8;
}
.node rect {
shape-rendering: crispEdges;
}
.node--hover rect {
opacity: .5;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.browser text {
text-anchor: end;
font-family: museo-sans-rounded, sans-serif;
}
.axis {
font-family: museo-sans-rounded, sans-serif;
font-size: 2vmin;
font-weight: 500;
}
.line {
fill: none;
stroke: steelblue;
stroke-width: 2px;
}
.grid line {
stroke: lightgrey;
stroke-width: 2px;
stroke-opacity: 0.7;
shape-rendering: crispEdges;
}
.grid path {
stroke-width: 0;
}
.tooltip {
position: absolute;
width: 110px;
height: auto;
padding: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
/* -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4); */
/* -moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4); */
/* box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4); */
pointer-events: none;
line-height: 1;
font-weight: bold;
background: rgba(255, 255, 255, 0.8);
}
</style>
<meta charset="utf-8"/>
<script src='js/d3.v4.min.js' charset="UTF-8"></script>
<link rel="stylesheet" href="https://use.typekit.net/jyh5xls.css">
</head>
<body>
<div id="page1"></div>
<div id="page2"></div>
<div id="page3"></div>
<div id="page4"></div>
<div id="page5"></div>
<div id="page6"></div>
<div id="page7"></div>
<div id="page8"></div>
<div id="page9"></div>
<div id="page10"></div>
<script src='js/script.js' charset="UTF-8"></script>
</body>