-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.css
69 lines (59 loc) · 1.19 KB
/
index.css
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
a.bbref-chart-link[href],
a.bbref-chart-link[href]:visited {
font-size: 12px;
color: #333;
font-weight: bold;
text-decoration: none;
background: -webkit-linear-gradient(#f7f7f7, #ddd);
padding: 1px 6px;
border-radius: 2px;
border: 1px solid #ccc;
}
a.bbref-chart-link[href]:before {
content: "☷";
font-size: 14px;
vertical-align: text-top;
line-height: 100%;
margin-right: 3px;
}
svg.bbref-chart g.bar rect {
fill: green;
fill-opacity: 0.5;
stroke: green;
stroke-width: 1px;
shape-rendering: crispEdges;
}
svg.bbref-chart g.bar:hover rect {
fill: purple;
stroke: purple;
}
svg.bbref-chart g.bar:hover text {
fill: dodgerblue;
}
svg.bbref-chart .axis text {
fill: #777;
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-size: 12px;
}
svg.bbref-chart .x.axis text {
font-size: 10px;
}
svg.bbref-chart .barlabel {
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-weight: bold;
font-size: 11px;
fill: #444;
}
svg.bbref-chart .axis line {
stroke: #eee;
stroke-width: 1px;
}
svg.bbref-chart path.domain {
display: none;
}
svg.bbref-chart .average {
fill: none;
stroke-width: 2px;
stroke-dasharray: 6 2;
stroke: #1E90FF;
}