blob: 966901b8d343b07024c1388ccc91005bc8da09a1 [file] [log] [blame]
Rizwan Haider8e5f4772016-08-17 18:04:35 -04001@import '../../../../style/sass/lib/_variables.scss';
2@import './vars.scss';
3
4service-map {
5 width: 100%;
6 height: 100px;
7 display: block;
8
9 .node rect {
10 fill: #fff;
11 stroke-width: 2px;
12 }
13
14 .node.uni {
15 rect {
16 stroke: $cord-red;
17 }
18 path {
19 fill: darken($cord-red, 20%);
20 }
21 }
22
23 .node.service{
24 rect {
25 stroke: $brand-primary;
26 }
27 path {
28 fill: darken($brand-primary, 20%);
29 }
30 }
31
32 .node text {
33 font: 12px sans-serif;
34 }
35
36 .link {
37 fill: none;
38 stroke: #ccc;
39 stroke-width: 1;
40 }
41}