blob: ec5acee8b2ca3f1aaa296280213a2e2d29952a34 [file] [log] [blame]
Matteo Scandolobf7c3662016-06-02 20:30:15 -07001$panel-width: 40%;
Matteo Scandolobe342fa2016-06-08 15:54:55 -07002$add-button-size: 40px;
3
Matteo Scandoloa3844ec2016-06-02 15:45:19 -07004e-node-map {
5 display: block;
6 height: 100%;
7
8 ng-map {
9 height: 100%;
10 }
Matteo Scandolobf7c3662016-06-02 20:30:15 -070011
12 e-node-map-panel {
13 position: absolute;
14 height: 100%;
15 top: 0;
Matteo Scandolo51365872016-06-03 10:00:05 -070016 right: -($panel-width + 5);
Matteo Scandolobf7c3662016-06-02 20:30:15 -070017 width: $panel-width;
18 background-color: $background-color;
19 background-image: url($background-image);
20 transition: all .5s ease-in-out;
Matteo Scandolo51365872016-06-03 10:00:05 -070021 box-shadow: -10px 0px 20px -5px rgba(0,0,0,0.75);
Matteo Scandolo2c2c8af2016-06-03 15:36:02 -070022 max-height: 100%;
23 overflow-y: scroll;
Matteo Scandolobf7c3662016-06-02 20:30:15 -070024
25 &.in{
26 right: 0;
27 }
28
29 .details {
30 margin-bottom: 20px;
31 .ip-address {
32 padding-top: 20px;
33 }
34 }
35 }
Matteo Scandolobe342fa2016-06-08 15:54:55 -070036
37 .addButton {
38 position: absolute;
39 display: block;
40 height: $add-button-size;
41 width: $add-button-size;
42 line-height: 35px;
43 text-align: center;
44 left: 20px;
45 bottom: 20px;
46 background-color: $cord-red;
47 color: #fff;
48 font-size: 30px;
49 font-weight: 700;
50 border-radius: 50%;
51
52 &:hover{
53 text-decoration: none;
54 }
55 }
Matteo Scandolobf7c3662016-06-02 20:30:15 -070056}
57
58e-node-map-panel {
59 display: block;
Matteo Scandoloa3844ec2016-06-02 15:45:19 -070060}