blob: 2914588a0cb3bfebe5d76bbebde0382e04da92b7 [file] [log] [blame]
Georgios Katsikas973a2652018-06-28 08:45:47 +02001/*
2 * Copyright 2018-present Open Networking Foundation
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 -- Throughput UI -- CSS file
19 */
20
21#ov-throughput {
22 padding: 20px;
23 position: relative;
24}
25.light #ov-throughput {
26 color: navy;
27}
28.dark #ov-throughput {
29 color: #88f;
30}
31
32#ov-throughput .button-panel {
33 margin: 10px;
34 width: 200px;
35}
36
37.light #ov-throughput .button-panel {
38 background-color: #ccf;
39}
40.dark #ov-throughput .button-panel {
41 background-color: #444;
42}
43
44#ov-throughput #chart-loader {
45 position: absolute;
46 width: 200px;
47 height: 50px;
48 margin-left: -100px;
49 margin-top: -25px;
50 z-index: 900;
51 top: 50%;
52 text-align: center;
53 left: 50%;
54 font-size: 25px;
55 font-weight: bold;
56 color: #ccc;
57}