blob: 4e9ff5628783b9c981c2de4951d9afb78710eb06 [file] [log] [blame]
Simon Hunt86388b12015-01-09 14:23:26 -08001/*
2 * Copyright 2014,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 -- Navigation -- CSS file
Simon Hunt86388b12015-01-09 14:23:26 -080019 */
20
21#nav {
22 position: absolute;
23 top: 50px;
24 left: 8px;
25 width: 160px;
26 height: 100px;
27 padding: 4px;
28 z-index: 3000;
29 visibility: hidden;
30}
31
32.light #nav {
33 background-color: #ccf;
34 box-shadow: 0 2px 8px #777;
35}
36.dark #nav {
37 background-color: #444;
38 box-shadow: 0 2px 8px #777;
39}
40
41#nav ul li {
42 font-size: 10pt;
43}
44
45
46#nav h2 {
47 font-size: 12pt;
48 margin: 0;
49}
50#nav h3 {
51 font-size: 8pt;
52 font-style: italic;
53 margin: 0;
54}
55
56.light #nav h2,
57.light #nav h3 {
58 color: black;
59}
60
61.dark #nav h2,
62.dark #nav h3 {
63 color: #ddd;
64}
65
66.dark #nav a {
67 color: #ddd;
68}
69