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

.track-container{
   
    .datapane{
        top:0px; 
        width: 100px; 
        height: 100px; 
        background-color: $light-color-secondary; 
        position:relative; 
        float:left; 
        border-style:solid; 
    }

    .track {
        .inner {  
            top:0px; 
            float:right; 
            height: 100px;
            width: calc(100% - 100px); 
            background-color: $light-color;     
            border-style:solid;        
            position:relative; 
        }
    }
}