-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathdangle.css
More file actions
56 lines (48 loc) · 852 Bytes
/
dangle.css
File metadata and controls
56 lines (48 loc) · 852 Bytes
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
/* axis line test */
.axis path {
fill: none;
stroke:#000;
stroke-width: 1.5px;
shape-rendering: crispEdges;
}
/* axis tick marks */
.axis line {
fill: none;
stroke: #000;
stroke-width: 1.1px;
shape-rendering: crispEdges;
}
/* controls the axis text */
.axis text {
fill: #333;
stroke: none;
shape-rendering: crispEdges;
font-size: 16px;
}
/* controls the area */
.area.fill {
fill: #e5f3f9;
fill-opacity: 0.2;
}
/* controls the top line in area */
.area.line {
fill: none;
stroke: #058dc7;
stroke-width: 6.0px;
}
.area.line.points {
fill: #058dc7;
stroke: #fff;
stroke-width: 3.0px;
}
/* histogram styles */
.histo.rect { fill: #058dc7; }
.bar.rect {
fill: #058dc7;
stroke: none;
}
.bar.text {
fill: #000;
stroke: none;
font-size: 12px;
}