blob: aa41bcb302d29c3bd38294e9687fc4e53978ddae [file] [log] [blame]
Jian Li10a20702016-02-01 16:39:51 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2016-present Open Networking Foundation
Jian Li10a20702016-02-01 16:39:51 -08003 *
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 -- Control Plane Manager -- CSS file
19 */
20
21#ov-cpman {
22 padding: 20px;
Jian Lid5be69f2016-04-25 18:11:52 -070023 position: relative;
Jian Li10a20702016-02-01 16:39:51 -080024}
25.light #ov-cpman {
26 color: navy;
27}
28.dark #ov-cpman {
29 color: #88f;
30}
31
32#ov-cpman .button-panel {
33 margin: 10px;
34 width: 200px;
35}
36
37.light #ov-cpman .button-panel {
38 background-color: #ccf;
39}
40.dark #ov-cpman .button-panel {
41 background-color: #444;
42}
43
Jian Lid5be69f2016-04-25 18:11:52 -070044#ov-cpman #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%;
Jian Li10a20702016-02-01 16:39:51 -080052 text-align: center;
Jian Lid5be69f2016-04-25 18:11:52 -070053 left: 50%;
54 font-size: 25px;
55 font-weight: bold;
56 color: #ccc;
Jian Li10a20702016-02-01 16:39:51 -080057}