Documentacion agregada - previo a la presentacion
[VSoRC/.git] / styles / topology.css
index 0cd945d49eaff2a58dbd40c82e833203a494f84a..5ea85e7a9fa107cc30f44e45188b98b9aee3ce24 100644 (file)
@@ -17,6 +17,28 @@ svg {
   height: 60px;
 }
 
+#snackbar {
+    visibility: hidden;
+    min-width: 250px; 
+    margin-left: -125px; /* min-width / 2 */
+    background-color: var(--pcolor-0);
+    color: white;
+    text-align: center;
+    border-radius: 5px;
+    padding: 16px;
+    position: fixed; /* Sit on top of the screen */
+    z-index: 1;
+    left: 50%; /* Center the snackbar */
+    bottom: 30px;
+}
+
+#snackbar.show {
+    visibility: visible; /* Show the snackbar */
+    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
+    animation: fadein 0.5s, fadeout 0.5s 2.5s;
+}
+
+
 text.label {
   fill: var(--scolor-4);
   text-anchor: start;
@@ -54,13 +76,16 @@ text.start, text.end {
   stroke-width: 1px;
 }
 
-div.tooltip {  
-  position: absolute;                  
-  text-align: left;                            
+div.tooltip {
+  position: absolute;
+  text-align: left;
   padding: 5px;
   color: white;
-  background: var(--scolor-3);                 
-  border: 0px;         
-  border-radius: 2px;                  
-  pointer-events: none;                        
+  background: var(--scolor-3);
+  border: 0px;
+  border-radius: 2px;
+  pointer-events: none;
+}
+.tab-list{
+  display: none;
 }