blob: 0722f6dbbd9bf6d696e75ded72f011221fc7a1d0 [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
19
20 @author Simon Hunt
21 */
22
23#mast {
24 height: 36px;
25 padding: 4px;
26 vertical-align: baseline;
27}
28
29.light #mast {
30 background-color: #bbb;
31 box-shadow: 0 2px 8px #777;
32}
33.dark #mast {
34 background-color: #444;
35 box-shadow: 0 2px 8px #777;
36}
37
38#mast img.logo {
39 height: 38px;
40 padding-left: 8px;
41 padding-right: 8px;
Simon Hunt86388b12015-01-09 14:23:26 -080042 cursor: pointer;
43}
44
45#mast img.logo:hover {
46 /* need something better */
47 /*background-color: #888;*/
Simon Huntc2202d52014-12-16 13:30:15 -080048}
49
50#mast .title {
51 font-size: 14pt;
52 font-style: italic;
53 vertical-align: 12px;
54}
55
56.light #mast .title {
57 color: #369;
58}
59.dark #mast .title {
60 color: #eee;
61}