forked from caged/bbref-graphs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
136 lines (111 loc) · 2.05 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
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
131
132
133
134
135
136
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-opacity: 0.5;
stroke-width: 1px;
shape-rendering: crispEdges;
}
svg.bbref-chart rect.chart1 {
fill: green;
stroke: green;
}
svg.bbref-chart rect.chart2 {
fill: blue;
stroke: blue;
}
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: #ccc;
stroke-width: 1px;
}
svg.bbref-chart path.domain {
display: none;
}
svg.bbref-chart .average {
fill: none;
stroke-width: 2px;
stroke-dasharray: 6 2;
}
svg.bbref-chart .average.chart1 {
stroke: green;
}
svg.bbref-chart .average.chart2 {
stroke: blue;
}
svg.bbref-chart .score {
fill: none;
stroke-width: 1px;
}
svg.bbref-chart .score.chart1 {
stroke: green;
}
svg.bbref-chart .score.chart2 {
stroke: blue;
}
.graph .scoreboard {
padding: 0.5em;
border: 1px solid #444;
}
.graph h3 .stat-label {
margin: 0 10px;
}
.graph .twitter-typeahead {
float: right;
margin-left: 10px;
}
.graph .twitter-typeahead input {
padding: 0.1em;
font-size: 90%;
width: 150px;
}
.graph .tt-dropdown-menu {
margin-top: 0;
width: 200px;
padding: 0.1em 0;
}
.graph .tt-suggestion {
padding: 0.2em;
}
.graph .tt-suggestion:hover {
cursor: pointer;
}
.graph input[type=checkbox] {
float: right;
margin: 5px 0 0 5px;
}