-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (44 loc) · 795 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
.ct-chart .ct-series-a .ct-line {
stroke: red;
}
.ct-chart .ct-series-b .ct-line {
stroke: #4F2112;
}
.ct-chart .ct-series-c .ct-line {
stroke: green;
}
.ct-chart .ct-series-d .ct-line {
stroke: blue;
}
.ct-legend {
padding-left: 70px;
}
/* basic positioning */
.ct-legend {
list-style: none;
}
.ct-legend li {
float: left;
margin-right: 10px;
}
.ct-legend span {
border: 1px solid #ccc;
float: left;
width: 12px;
height: 12px;
margin: 2px;
}
/* your colors */
.ct-legend .ct-series-0 span {
background-color: red;
font-size: 1.5em;
}
.ct-legend .ct-series-1 span {
background-color: #4F2112;;
}
.ct-legend .ct-series-2 span {
background-color: green;
}
.ct-legend .ct-series-3 span {
background-color: blue;
}