blob: ccd7eb01929f8ff23a8a531dd6e80c6a31106a58 (
plain)
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
|
/* figures will always be within a div with class="qtlcharts" */
div.qtlcharts {
font-family: sans-serif;
font-size: 11pt;
}
div.qtlcharts .title text {
dominant-baseline: middle;
fill: blue;
text-anchor: middle;
}
div.qtlcharts .y.axis text {
dominant-baseline: middle;
text-anchor: end;
}
div.qtlcharts .y.axis text.title {
text-anchor: middle;
fill: slateblue;
}
div.qtlcharts .x.axis text {
dominant-baseline: hanging;
text-anchor: middle;
}
div.qtlcharts .x.axis text.title {
fill: slateblue;
}
/*div.qtlcharts line.axis.grid {
fill: none;
stroke-width: 1;
pointer-events: none;
}
div.qtlcharts line.x.axis.grid {
stroke: rgb(200, 200, 200);
stroke-width: 3;
}
div.qtlcharts line.y.axis.grid {
stroke: white;
}*/
div.qtlcharts .extent {
fill: #cac;
opacity: 0.3;
}
div.qtlcharts circle.selected {
fill: hotpink;
opacity: 1;
}
div.qtlcharts a {
color: #08c;
text-decoration: none;
}
div.qtlcharts a:hover {
color: #333;
text-decoration: underline;
}
/* figure captions */
.caption {
font-family: Sans-serif;
font-size: 11pt;
margin-left: 60px;
width: 600px;
}
/* d3 tip for tool tips */
.d3-tip {
background: darkslateblue;
color: #fff;
stroke: none;
font-weight: bold;
font-size: 16px;
font-family: sans-serif;
padding: 5px;
}
.d3-tip.e:after {
color: darkslateblue;
}
|