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