-
Notifications
You must be signed in to change notification settings - Fork 0
/
synthea_scale.css
71 lines (64 loc) · 1.31 KB
/
synthea_scale.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
<style type="text/css">
.chart {
font-family: Arial, sans-serif;
font-size: 10px;
}
.axis path, .axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.backgroundBar {
opacity: 0.4;
}
/* Tooltip */
div.tooltip {
position: absolute; /* reference for measurement */
text-align: left;
pointer-events: none; /* 'none' tells the mouse to ignore the rectangle */
background: #E0E0E0;
padding: 10px;
border: 1px solid #D5D5D5;
font-family: arial,helvetica,sans-serif;
position: absolute;
font-size: 1.1em;
color: #333;
padding: 10px;
border-radius: 3px;
background: rgba(255,255,255,0.9);
color: #000;
box-shadow: 0 1px 5px rgba(0,0,0,0.4);
-moz-box-shadow: 0 1px 5px rgba(0,0,0,0.4);
border:1px solid rgba(200,200,200,0.85);
z-index: 10000;
}
div.tooltipTail {
position: absolute;
left:-7px;
top: 12px;
width: 7px;
height: 13px;
}
div.toolTipBody {
position:absolute;
height:100px;
width:230px;
}
#toolTip .header {
text-align: left;
font-size: 14px;
margin-bottom: 2px;
color:#3300FF;
}
.brush .extent {
stroke: #fff;
fill-opacity: .125;
shape-rendering: crispEdges;
}
.bar, .summaryBar {
cursor: pointer;
}
#timeCtl .domain {
cursor: pointer;
}
</style>