blob: 4e66b470499e56852c7ffa431aea99a1d812d9fd [file] [log] [blame]
/*
* Copyright 2017-present Open Networking Foundation
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
@import '../../../../style/sass/lib/_variables.scss';
@import './vars.scss';
service-map {
width: 100%;
height: 100px;
display: block;
.node rect {
fill: #fff;
stroke-width: 2px;
}
.node.uni {
rect {
stroke: $cord-red;
}
path {
fill: darken($cord-red, 20%);
}
}
.node.service{
rect {
stroke: $brand-primary;
}
path {
fill: darken($brand-primary, 20%);
}
}
.node text {
font: 12px sans-serif;
}
.link {
fill: none;
stroke: #ccc;
stroke-width: 1;
}
}