blob: 6ec4c9d8815bfb8f90fdbd7dec62e9fa07e0f2a3 [file] [log] [blame]
Jian Li10a20702016-02-01 16:39:51 -08001/*
2 * Copyright 2016 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 -- Control Plane Manager -- CSS file
19 */
20
21#ov-cpman {
22 padding: 20px;
23}
24.light #ov-cpman {
25 color: navy;
26}
27.dark #ov-cpman {
28 color: #88f;
29}
30
31#ov-cpman .button-panel {
32 margin: 10px;
33 width: 200px;
34}
35
36.light #ov-cpman .button-panel {
37 background-color: #ccf;
38}
39.dark #ov-cpman .button-panel {
40 background-color: #444;
41}
42
43#ov-cpman .my-button {
44 cursor: pointer;
45 padding: 4px;
46 text-align: center;
47}
48
49.light #ov-cpman .my-button {
50 color: white;
51 background-color: #99d;
52}
53.dark #ov-cpman .my-button {
54 color: black;
55 background-color: #aaa;
56}
57
58#ov-cpman .number {
59 font-size: 140%;
60 text-align: right;
61}