aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/Timeline.scss
blob: 0a510ba6e3eed8d4e86ed1e47b2d202b8d5a08de (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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
@import "./../globalCssVariables.scss"; 

.minimize{
    position:relative; 
    z-index: 1000; 
    height: 30px; 
    width: 100px; 
}
.flyout-container{
    background-color: transparent; 
    position:absolute; 
            
    z-index:9999; 
    height: 150px; 
    width: 150px; 

    .flyout{
        background-color: transparent; 
        transform: rotate(180deg); 
        left:0px; 
        top:0px; 
        width: 100%; 
        height: 100%; 
    }
    .input-container{
        position: absolute; 
        right:0px; 
        top: 30px; 
        width: 70px; 
        input{
            width: 100%; 
        }
    }
    .text-container{
        position:absolute; 
        top:30px; 
        left:0px; 
        color:white
    }
}

.timeline-container{
    width:100%;
    height:300px; 
    position:absolute;
    background-color: $light-color-secondary;
    box-shadow: 0px 10px 20px; 
    //transition: transform 1000ms ease-in-out; 
    
    .toolbox{
        position:absolute; 
        width: 100%;   
        top: 10px; 
        left: 20px; 
        div{
            float:left; 
            margin-left: 10px; 
            position:relative; 
            .overview{
                width: 200px; 
                height: 100%; 
                background-color: black; 
                position:absolute; 
            }
        }
    }
    .info-container{ 
        margin-top: 50px; 
        right:20px; 
        position:absolute; 
        height: calc(100% - 100px); 
        width: calc(100% - 140px); 
        overflow: hidden;
        padding:0px; 

        .scrubberbox{
            position:absolute; 
            background-color: transparent; 
            height: 30px;
            width:100%; 
            
            .tick{
                height:100%; 
                width: 1px; 
                background-color:black; 

            }   
        }
        .scrubber{
            top:30px; 
            height: 100%; 
            width: 2px; 
            position:absolute;
            z-index: 1001;
            background-color:black; 
            .scrubberhead{
                top: -30px; 
                height: 30px; 
                width: 30px;
                background-color:transparent; 
                border-radius: 50%; 
                border: 5px solid black; 
                left: -15px;
                position:absolute;                 
            }
        }

        .trackbox{
            top: 30px; 
            height:calc(100% - 30px);
            width:100%;
            border:1px;
            overflow:hidden;
            background-color:white;
            position:absolute;
            box-shadow: -10px 0px 10px 10px grey; 
        }
        
    }
    .title-container{
        margin-top: 80px; 
        margin-left: 20px; 
        height: calc(100% - 100px - 30px); 
        width: 100px; 
        background-color:white;
        overflow: hidden;  
        .datapane{
            top:0px; 
            width: 100px; 
            height: 75px; 
            border: 1px solid $dark-color;
            background-color: $intermediate-color; 
            color: white; 
            position:relative; 
            float:left; 
            border-style:solid; 
        }
    }
    .resize{
        bottom: 5px; 
        position:absolute; 
        height: 30px; 
        width: 50px; 
        left: calc(50% - 25px);
    }
}