-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
63 lines (51 loc) · 946 Bytes
/
style.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
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
.line-plot {
position: relative;
}
.line-plot.canvas {
position: absolute;
pointer-events: all;
z-index: 1;
}
.line-plot.svg {
position: absolute;
z-index: 0;
pointer-events: none;
-webkit-transform: translate3d(0,0,0);
}
.line-plot.rect {
fill: #ffffff;
z-index: 100;
}
.line-plot .plot {
fill: #ffffff;
}
.line-plot .grid .tick {
stroke: #BEC9CE;
opacity: 0.6;
}
.line-plot .grid path {
stroke-width: 0;
}
.line-plot .axis path, .axis line {
fill: none;
stroke: none;
shape-rendering: crispEdges;
}
.line-plot .axis path {
display: none;
}
.line-plot .line {
cursor: pointer;
fill: none;
}
.line-plot text {
fill: #A7A9AC;
font-family: monospace;
font-size: 14px;
font-weight: normal;
}
.line-plot .label {
font-family: 'Open Sans', sans-serif;
font-size: 16px;
}