-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_line.css
More file actions
61 lines (51 loc) · 916 Bytes
/
Copy pathexample_line.css
File metadata and controls
61 lines (51 loc) · 916 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
57
58
59
60
61
body {
margin: auto;
width: 960px;
font-family: 'Roboto', sans-serif;
}
text {
font-size: 10px;
font-family: 'Roboto', sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: lightgrey;
shape-rendering: crispEdges;
display: none;
font-family: 'Roboto', sans-serif;
}
.x.axis path {
display: none;
font-family: 'Roboto', sans-serif;
}
.line {
fill: none;
stroke: url(#temperature-gradient);
stroke-width: 7px;
font-family: 'Roboto', sans-serif;
}
.grid line {
stroke: lightgrey;
stroke-opacity: 0.7;
shape-rendering: crispEdges;
font-family: 'Roboto', sans-serif;
}
.grid path {
stroke-width: 0;
}
.overlay {
fill: none;
pointer-events: all;
font-family: 'Roboto', sans-serif;
}
.focus circle {
fill: white;
stroke: lightgrey;
stroke-width: 5px;
}
.hover-line {
stroke: lightgrey;
stroke-width: 2px;
stroke-dasharray: 3,3;
}