blob: 2e86e86d450026eaeecaf7bb8bcf1dd4eedd82de [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
Thomas Vachuska83785e22015-04-01 02:55:02 -070027html[data-platform='iPad'] #mast {
28 padding-top: 16px;
29}
30
Simon Huntc2202d52014-12-16 13:30:15 -080031.light #mast {
32 background-color: #bbb;
33 box-shadow: 0 2px 8px #777;
34}
35.dark #mast {
36 background-color: #444;
Simon Hunt5ee36e02015-01-15 10:33:20 -080037 box-shadow: 0 2px 8px #222;
Simon Huntc2202d52014-12-16 13:30:15 -080038}
39
Simon Hunt4c5c0462015-03-24 11:21:17 -070040#mast .nav-menu-button {
41 width: 30px;
42 height: 30px;
43 margin-left: 8px;
44 margin-bottom: 4px;
45 cursor: pointer;
46}
47.light #mast .nav-menu-button:hover {
48 background-color: #ddd;
49}
50.dark #mast .nav-menu-button:hover {
51 background-color: #777;
52}
53
Simon Huntc2202d52014-12-16 13:30:15 -080054#mast img.logo {
55 height: 38px;
56 padding-left: 8px;
57 padding-right: 8px;
Simon Hunt86388b12015-01-09 14:23:26 -080058}
59
60#mast img.logo:hover {
61 /* need something better */
62 /*background-color: #888;*/
Simon Huntc2202d52014-12-16 13:30:15 -080063}
64
65#mast .title {
66 font-size: 14pt;
67 font-style: italic;
68 vertical-align: 12px;
69}
70
71.light #mast .title {
72 color: #369;
73}
74.dark #mast .title {
75 color: #eee;
76}
Simon Hunteb0fa052015-02-17 19:20:28 -080077
78#mast-right {
79 display: inline-block;
80 padding-top: 8px;
81 padding-right: 16px;
82 float: right;
83 /*border: 1px solid red;*/
Thomas Vachuskaeff0e4e2015-08-11 00:26:24 -070084}
85
86#mast-right a {
87 font-size: 12pt;
88 font-style: normal;
89 font-weight: bold;
90 text-decoration: none;
91}
92
93.light #mast-right a {
94 color: #369;
95}
96.dark #mast-right a {
97 color: #eee;
98}
99
100#mast-right a:hover {
101 color: #CE5650;
102}