-
Notifications
You must be signed in to change notification settings - Fork 0
/
timeline.css
58 lines (48 loc) · 1.05 KB
/
timeline.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
.timeline-container * {
box-sizing: content-box;
}
.timeline-node {
width: 5px;
height: 5px;
border: 1px solid #000;
}
.node {
border-color: #000;
border-style: solid;
border-radius: 50%;
}
.node-label {
color: inherit;
}
a.node-label {
text-decoration: none;
}
.main-timeline {
/*This is the style of the main, vertical timeline itself*/
border-right: solid #000; /*Will be applied if the labelPosition option is set to Left */
border-left: solid #000; /*Will be applied if the labelPosition option is set to Right */
}
.event-marker {
border-bottom-color: #000;
border-bottom-style: solid;
width: 10px; /*At present this is being overridden by the eventLabelWidthDefault option. Needs fixing*/
}
.event-label {
font-size: 20px;
color: inherit;
}
.event-label.active {
font-size: 1.5em;
margin-top: -0.1em;
}
.zoom-button {
width: 25px;
height: 25px;
display: block;
padding: 0;
font-size: 12px;
}
.zoom-button.disabled {
cursor: not-allowed;
opacity: 0.8;
}