blob: 381b4f9251ceb7827bcea4a6f6cbd9568fc89e77 [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;
Thomas Vachuska9730ec92015-03-07 17:25:21 -080023 top: 45px;
24 left: 1px;
25 Xwidth: 200px;
26 padding: 0px;
Simon Hunt86388b12015-01-09 14:23:26 -080027 z-index: 3000;
28 visibility: hidden;
29}
30
31.light #nav {
Thomas Vachuska9730ec92015-03-07 17:25:21 -080032 background-color: #bbb;
Simon Hunt86388b12015-01-09 14:23:26 -080033 box-shadow: 0 2px 8px #777;
34}
35.dark #nav {
36 background-color: #444;
Simon Hunt9d286562015-03-09 13:53:50 -070037 box-shadow: 0 2px 8px #111;
Simon Hunt86388b12015-01-09 14:23:26 -080038}
39
Thomas Vachuska9730ec92015-03-07 17:25:21 -080040#nav a {
41 text-decoration: none;
42 font-size: 14pt;
43 display: block;
44 padding: 8px 16px 6px 16px;
Simon Hunt86388b12015-01-09 14:23:26 -080045}
46
Thomas Vachuska9730ec92015-03-07 17:25:21 -080047.light #nav a {
48 color: #369;
49 border-bottom: solid #ccc 1px;
Simon Hunt86388b12015-01-09 14:23:26 -080050}
51
52.dark #nav a {
Thomas Vachuska9730ec92015-03-07 17:25:21 -080053 color: #eee;
54 border-bottom: solid #333 1px;
55}
56
57.light #nav a:hover {
58 background-color: #ddd;
59}
60
61.dark #nav a:hover {
62 background-color: #999;
Simon Hunt86388b12015-01-09 14:23:26 -080063}
64