blob: bb9a4ecc0e26e10cf5e67f395f3b7de0f1cf1139 [file] [log] [blame]
Matteo Scandolobf7c3662016-06-02 20:30:15 -07001$panel-width: 40%;
Matteo Scandoloa3844ec2016-06-02 15:45:19 -07002e-node-map {
3 display: block;
4 height: 100%;
5
6 ng-map {
7 height: 100%;
8 }
Matteo Scandolobf7c3662016-06-02 20:30:15 -07009
10 e-node-map-panel {
11 position: absolute;
12 height: 100%;
13 top: 0;
Matteo Scandolo51365872016-06-03 10:00:05 -070014 right: -($panel-width + 5);
Matteo Scandolobf7c3662016-06-02 20:30:15 -070015 width: $panel-width;
16 background-color: $background-color;
17 background-image: url($background-image);
18 transition: all .5s ease-in-out;
Matteo Scandolo51365872016-06-03 10:00:05 -070019 box-shadow: -10px 0px 20px -5px rgba(0,0,0,0.75);
Matteo Scandolobf7c3662016-06-02 20:30:15 -070020
21 &.in{
22 right: 0;
23 }
24
25 .details {
26 margin-bottom: 20px;
27 .ip-address {
28 padding-top: 20px;
29 }
30 }
31 }
32}
33
34e-node-map-panel {
35 display: block;
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070036}