aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/Timeline.scss
blob: a7b0323ff9bd9aca060d59f858e7ead7c4b9fcc4 (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
@import "./../globalCssVariables.scss"; 

.timeline-container{
    width:100%;
    height:200px; 
    position:absolute;
    background-color:$intermediate-color;
    .toolbox{
        padding-top:10px; 
    }
    .scrubberbox{
        z-index:10; 
        background-color: black; 
        height: 20px;
        margin-left:calc(10% + 100px);
        width: calc(80% - 100px); 
        .scrubber{
            z-index:10; 
            height:300px; 
            width: 5px; 
            background-color:green; 
        }
    }
    .trackbox{
        height:60%;
        width:80%;
        border:1px;
        overflow:auto;
        background-color:white;
        margin-Left:10%;
        position:absolute;

    }
}