blob: efd371e8c4a2cc69fa7b46de5bb4eac4f59a1cc6 [file] [log] [blame]
Simon Huntc2202d52014-12-16 13:30:15 -08001/*
2 * Copyright 2014 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/*
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;
42}
43
44#mast .title {
45 font-size: 14pt;
46 font-style: italic;
47 vertical-align: 12px;
48}
49
50.light #mast .title {
51 color: #369;
52}
53.dark #mast .title {
54 color: #eee;
55}