-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (63 loc) · 1.05 KB
/
Copy pathstyle.css
File metadata and controls
78 lines (63 loc) · 1.05 KB
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
72
73
74
75
76
77
78
/* Default timeline classes */
.tl-bg {
fill: #ffffff;
}
.tl-event {
cursor: pointer;
}
.tl-event rect {
fill: rgba(115, 105, 250, 0.8);
}
.tl-event:hover rect {
fill: rgba(120, 110, 255, 1);
stroke: #000000;
stroke-width: 1;
}
.tl-event text {
fill: #ffffff;
}
.tl-era rect {
fill: rgba(200, 240, 240, 0.35);
stroke: rgba(200, 240, 240, 0.95);
stroke-width: 1;
}
.tl-era text {
fill: #000000;
}
.tl-axis,
.tl-ticks line {
stroke: #333333;
stroke-width: 2;
}
.tl-ticks text {
fill: #333333;
}
/* Custom CSS classes */
.my-era rect {
fill: rgba(252, 186, 3, 0.15);
stroke: rgba(252, 186, 3, 0.5);
}
.my-era rect:hover {
fill: rgba(252, 186, 3, 0.3);
stroke-width: 1;
}
.my-era-2 rect {
fill: rgba(252, 3, 3, 0.15);
stroke: rgba(252, 3, 3, 0.5);
}
.my-era-2 rect:hover {
fill: rgba(252, 3, 3, 0.3);
stroke-width: 1;
}
.download rect {
fill: rgba(212, 136, 3, 0.85);
}
.parse rect {
fill: rgba(3, 3, 212, 0.85);
}
.compress rect {
fill: rgba(3, 52, 212, 0.85);
}
.move rect {
fill: rgba(3, 113, 212, 0.85);
}