blob: 79910883f35c5a8910b26ef7e11383a4823171de [file] [log] [blame]
Simon Hunt86388b12015-01-09 14:23:26 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Simon Hunt86388b12015-01-09 14:23:26 -08003 *
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/*
Simon Hunt58894c82016-05-24 15:09:02 -070018 ONOS GUI -- Navigation (layout) -- 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;
Simon Hunt38c2b6a2015-04-24 13:02:05 -070025 padding: 0;
Simon Hunt86388b12015-01-09 14:23:26 -080026 z-index: 3000;
27 visibility: hidden;
28}
29
Bri Prebilic Coled8745462015-06-01 16:08:57 -070030html[data-platform='iPad'] #nav {
31 top: 57px;
32}
33
Simon Hunt38c2b6a2015-04-24 13:02:05 -070034#nav .nav-hdr {
35 font-style: italic;
36 padding: 6px 8px 6px 8px;
37}
38
Thomas Vachuska9730ec92015-03-07 17:25:21 -080039#nav a {
40 text-decoration: none;
41 font-size: 14pt;
42 display: block;
Simon Hunt20e16792015-04-24 14:29:39 -070043 padding: 8px 16px 6px 12px;
Simon Hunt86388b12015-01-09 14:23:26 -080044}
45
Simon Hunt20e16792015-04-24 14:29:39 -070046#nav a div {
47 display: inline-block;
48 vertical-align: middle;
49 padding-right: 4px;
50}