blob: d98b62078b6903a8987610379d0b31fe5bcd86cd [file] [log] [blame]
Brian O'Connora468e902015-03-18 16:43:49 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 ONOS GUI -- Intent Perf View -- CSS file
19 */
20
Thomas Vachuska95aadff2015-03-26 11:45:41 -070021svg {
22 font: 12px sans-serif;
Brian O'Connora468e902015-03-18 16:43:49 -070023}
24
Thomas Vachuska95aadff2015-03-26 11:45:41 -070025.line {
26 fill: none;
27 stroke: #000;
28 stroke-width: 2px;
Brian O'Connora468e902015-03-18 16:43:49 -070029}
30
Brian O'Connora468e902015-03-18 16:43:49 -070031.axis path,
32.axis line {
33 fill: none;
Thomas Vachuska95aadff2015-03-26 11:45:41 -070034 stroke-width: 2px;
Brian O'Connora468e902015-03-18 16:43:49 -070035 shape-rendering: crispEdges;
36}
37
Thomas Vachuska95aadff2015-03-26 11:45:41 -070038.light .axis path,
39.light .axis line,
40.light .axis text {
41 stroke: #999;
Brian O'Connora468e902015-03-18 16:43:49 -070042}
Thomas Vachuska95aadff2015-03-26 11:45:41 -070043
44.dark .axis path,
45.dark .axis line,
46.dark .axis text {
47 stroke: #eee;
48}
49
50.axis text {
51 stroke-width: 0.3;
52}