Documentacion agregada - previo a la presentacion
[VSoRC/.git] / styles / topology.css
1 /*
2     Copyright (c) Maen Artimy, 2018
3 */
4
5 @import "colors.css";
6
7 svg {
8   /*background-color: var(--scolor-2);*/
9   border-style: solid;
10   border-width: 2px;
11   border-color: var(--scolor-2);
12   border-radius: 5px;
13 }
14
15 .node image {
16   width: 60px;
17   height: 60px;
18 }
19
20 #snackbar {
21     visibility: hidden;
22     min-width: 250px; 
23     margin-left: -125px; /* min-width / 2 */
24     background-color: var(--pcolor-0);
25     color: white;
26     text-align: center;
27     border-radius: 5px;
28     padding: 16px;
29     position: fixed; /* Sit on top of the screen */
30     z-index: 1;
31     left: 50%; /* Center the snackbar */
32     bottom: 30px;
33 }
34
35 #snackbar.show {
36     visibility: visible; /* Show the snackbar */
37     -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
38     animation: fadein 0.5s, fadeout 0.5s 2.5s;
39 }
40
41
42 text.label {
43   fill: var(--scolor-4);
44   text-anchor: start;
45 }
46
47 .links line {
48   stroke: var(--scolor-3);
49   stroke-opacity: 0.6;
50 }
51
52 circle {
53   stroke: var(--scolor-3);
54   fill: white;
55 }
56
57 text.start, text.end {
58   fill: var(--scolor-3);
59   text-anchor: middle;
60   alignment-baseline: middle;
61   font-size: 0.75em;
62 }
63
64
65 .node circle {
66   fill: #fff;
67   stroke: var(--scolor-3);
68   stroke-width: 2px;
69 }
70
71 .node text { font: 12px sans-serif; }
72
73 .link {
74   fill: none;
75   stroke: var(--scolor-3);
76   stroke-width: 1px;
77 }
78
79 div.tooltip {
80   position: absolute;
81   text-align: left;
82   padding: 5px;
83   color: white;
84   background: var(--scolor-3);
85   border: 0px;
86   border-radius: 2px;
87   pointer-events: none;
88 }
89 .tab-list{
90   display: none;
91 }