blob: 3c7d97d827a23880aed46638229cc6da03fa17b0 [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
36#mast img.logo {
37 height: 38px;
38 padding-left: 8px;
39 padding-right: 8px;
Simon Hunt86388b12015-01-09 14:23:26 -080040 cursor: pointer;
41}
42
43#mast img.logo:hover {
44 /* need something better */
45 /*background-color: #888;*/
Simon Huntc2202d52014-12-16 13:30:15 -080046}
47
48#mast .title {
49 font-size: 14pt;
50 font-style: italic;
51 vertical-align: 12px;
52}
53
54.light #mast .title {
55 color: #369;
56}
57.dark #mast .title {
58 color: #eee;
59}
Simon Hunteb0fa052015-02-17 19:20:28 -080060
61#mast-right {
62 display: inline-block;
63 padding-top: 8px;
64 padding-right: 16px;
65 float: right;
66 /*border: 1px solid red;*/
67}