blob: b79d89e049c2b4f78082320fe16570ab50cbcae4 [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
17div.mast {
18 width: 100%;
19 height: 85px;
20 background-color: white;
21 position: relative;
22 box-shadow: 0 10px 5px -7px gray;
23 z-index: 100;
24}
25
26.mast div {
27 position: absolute;
28 top: 50%;
29 transform: translate(0, -50%);
30}
31
32.mast div.left {
33 left: 25px;
34}
35
36.mast div.right {
37 right: 7%;
38 width: 37%;
39}
40
41.mast img {
42 width: 220px;
43}
44
45.mast a,
46.mast a:visited {
47 text-decoration: none;
48 color: #3C3C3C;
49}
50
51.mast li.logout {
52 list-style-type: none;
53 position: absolute;
54 right: 0;
55 top: 50%;
56 transform: translate(0, -50%);
57 font-size: 90%;
58}
59.mast li.logout:hover {
60 font-weight: bold;
61 list-style-type: none;
62 cursor: pointer;
63}