blob: 0eec2efb563e822d82bc44014e5d56b5fc23bc04 [file] [log] [blame]
Simon Huntc2202d52014-12-16 13:30:15 -08001/*
Simon Hunt8ead3a22015-01-06 11:00:15 -08002 * Copyright 2014,2015 Open Networking Laboratory
Simon Huntc2202d52014-12-16 13:30:15 -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/*
18 ONOS GUI -- Masthead -- CSS file
Simon Huntc2202d52014-12-16 13:30:15 -080019 */
20
21#mast {
22 height: 36px;
23 padding: 4px;
24 vertical-align: baseline;
25}
26
27.light #mast {
28 background-color: #bbb;
29 box-shadow: 0 2px 8px #777;
30}
31.dark #mast {
32 background-color: #444;
Simon Hunt5ee36e02015-01-15 10:33:20 -080033 box-shadow: 0 2px 8px #222;
Simon Huntc2202d52014-12-16 13:30:15 -080034}
35
Simon Hunt4c5c0462015-03-24 11:21:17 -070036#mast .nav-menu-button {
37 width: 30px;
38 height: 30px;
39 margin-left: 8px;
40 margin-bottom: 4px;
41 cursor: pointer;
42}
43.light #mast .nav-menu-button:hover {
44 background-color: #ddd;
45}
46.dark #mast .nav-menu-button:hover {
47 background-color: #777;
48}
49
Simon Huntc2202d52014-12-16 13:30:15 -080050#mast img.logo {
51 height: 38px;
52 padding-left: 8px;
53 padding-right: 8px;
Simon Hunt86388b12015-01-09 14:23:26 -080054}
55
56#mast img.logo:hover {
57 /* need something better */
58 /*background-color: #888;*/
Simon Huntc2202d52014-12-16 13:30:15 -080059}
60
61#mast .title {
62 font-size: 14pt;
63 font-style: italic;
64 vertical-align: 12px;
65}
66
67.light #mast .title {
68 color: #369;
69}
70.dark #mast .title {
71 color: #eee;
72}
Simon Hunteb0fa052015-02-17 19:20:28 -080073
74#mast-right {
75 display: inline-block;
76 padding-top: 8px;
77 padding-right: 16px;
78 float: right;
79 /*border: 1px solid red;*/
80}