blob: 9e69c2adf4a16a00057ea1242fad65fb42e2b29d (
plain)
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
|
@import "./../globalCssVariables.scss";
.timeline-overview-container{
width: 300px;
height: 40px;
margin-top: 10px;
margin-left: 20px;
background: white;
border: 2px solid black;
padding: 0px;
display:inline-block;
.timeline-overview-visible{
height: 100%;
background: green;
margin: 0px;
}
.timeline-overview-scrubber-container{
height: 100%;
margin-top: -40px;
margin-left: 0px;
width: 2px;
z-index: 1001;
background-color:black;
display: inline-block;
.timeline-overview-scrubber-head{
position:absolute;
height: 30px;
width: 30px;
background-color:transparent;
border-radius: 50%;
border: 5px solid black;
margin-left: -15px;
top: -15px;
}
}
}
|