blob: 464f95b808bcea1cec65ff4bcc563cd24278b1e0 [file] [log] [blame]
Matteo Scandolo5d568612016-01-26 11:02:16 -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.nav ul {
18 display: table;
19 table-layout: fixed;
20 list-style-type: none;
21 width: 80%;
22}
23
24.nav li {
25 padding: 2.5% 0;
26 color: #3C3C3C;
27}
28.nav li:hover {
29 border-bottom: 2px solid #CE5650;
30 color: black;
31}
32.nav li.selected {
33 font-weight: bolder;
34 color: #3C3C3C;
35 letter-spacing: 0.03em;
36 border-bottom: 2px solid #CE5650;
37}
38
39.nav a,
40.nav a:visited {
41 display: table-cell;
42 text-align: center;
43 text-decoration: none;
44 color: black;
45}