blob: c36e56d186565529bd6917f4ba39395e9557de85 [file] [log] [blame]
Matteo Scandolo3d8f5de2016-05-23 14:27:52 -07001xos-side-panel .xos-side-panel-content {
2 position: fixed;
3 width: 30%;
4 height: 100%;
5 padding: 25px;
6 background: #fff;
7 overflow: scroll; }
8 xos-side-panel .xos-side-panel-content.right {
9 border-left: 1px solid #555555;
10 top: 0;
11 right: 0;
12 visibility: hidden;
13 box-shadow: -10px 0px 20px -8px rgba(0, 0, 0, 0.75); }
14 xos-side-panel .xos-side-panel-content.right.out {
15 animation: 0.5s slideOutRight ease-in-out;
16 visibility: visible; }
17 xos-side-panel .xos-side-panel-content.right.in {
18 animation: 0.5s slideInRight ease-in-out;
19 visibility: visible; }
20
21@keyframes slideInRight {
22 from {
23 transform: translate3d(100%, 0, 0);
24 visibility: visible; }
25 to {
26 transform: translate3d(0, 0, 0); } }
27
28@keyframes slideOutRight {
29 from {
30 transform: translate3d(0, 0, 0); }
31 to {
32 visibility: hidden;
33 transform: translate3d(100%, 0, 0); } }
34
Matteo Scandolo819d13d2016-05-06 16:52:58 -070035#xosServiceGrid service-graph {
36 display: block;
37 width: 100%;
38 height: 600px; }
39
40#xosServiceGrid .node {
41 stroke: #337ab7;
42 fill: white; }
43
44#xosServiceGrid .node.xos {
45 fill: #d9534f; }
46
47#xosServiceGrid .link {
48 stroke: black;
49 stroke-width: 2px; }