Map draft done
diff --git a/mCordPortal/src/sass/home.scss b/mCordPortal/src/sass/home.scss
index 239c06f..8aa2531 100644
--- a/mCordPortal/src/sass/home.scss
+++ b/mCordPortal/src/sass/home.scss
@@ -1,3 +1,4 @@
+$panel-width: 40%;
 e-node-map {
   display: block;
   height: 100%;
@@ -5,4 +6,30 @@
   ng-map {
     height: 100%;
   }
+  
+  e-node-map-panel {
+    position: absolute;
+    height: 100%;
+    top: 0;
+    right: -$panel-width;
+    width: $panel-width;
+    background-color: $background-color;
+    background-image: url($background-image);
+    transition: all .5s ease-in-out;
+
+    &.in{
+      right: 0;
+    }
+
+    .details {
+      margin-bottom: 20px;
+      .ip-address {
+        padding-top: 20px;
+      }
+    }
+  }
+}
+
+e-node-map-panel {
+  display: block;
 }
\ No newline at end of file