blob: 6411dbcab76d29a677dd76c574a34c5cbb99979f [file] [log] [blame]
Bri Prebilic Cole47bb7802015-02-05 17:25:15 -08001/*
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 -- Veil Service -- CSS file
19 */
20
21#veil {
22 z-index: 5000;
23 display: none;
24 position: absolute;
25 top: 0;
26 left: 0;
27 padding: 60px;
28}
29
30.light #veil {
31 background-color: rgba(0,0,0,0.75);
32}
33.dark #veil {
34 background-color: rgba(255,255,255,0.5);
35}
36
37#veil p {
38 display: block;
39 margin: 8px 20px;
40 font-size: 14pt;
41 font-style: italic;
42}
43
44.light #veil p {
45 color: #ddd;
46}
47.dark #veil p {
48 color: #404040;
49}