blob: 35f81031090ffe64469c1d449a8975681d3dd74f [file] [log] [blame]
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -07001/*
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.nav ul {
Bri Prebilic Cole75874da2015-05-19 14:24:24 -070018 display: table;
19 table-layout: fixed;
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070020 list-style-type: none;
21 width: 100%;
Bri Prebilic Cole75874da2015-05-19 14:24:24 -070022 margin-bottom: 2%;
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070023}
24
25.nav li {
Bri Prebilic Cole10570eb2015-05-20 16:23:52 -070026 background-color: lightgray;
27 padding: 1% 0;
28}
29.nav li.selected {
30 font-weight: bold;
31 background-color: darkgray;
Bri Prebilic Cole75874da2015-05-19 14:24:24 -070032}
33
34.nav a {
35 display: table-cell;
36 text-align: center;
Bri Prebilic Cole10570eb2015-05-20 16:23:52 -070037 text-decoration: none;
38 color: black;
39}
40.nav a:visited {
41 color: black;
Bri Prebilic Cole3c3361c2015-05-19 12:07:29 -070042}