blob: 8f94066f3d9c48d88d54ef47a80c983f48f0d9a8 [file] [log] [blame]
Simon Hunt58894c82016-05-24 15:09:02 -07001/*
2 * Copyright 2016-present 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 (theme) -- CSS file
19 */
20
21.light #mast {
22 background-color: #bbb;
23 box-shadow: 0 2px 8px #777;
24}
25.dark #mast {
26 background-color: #444;
27 box-shadow: 0 2px 8px #222;
28}
29
30
31.light #mast .nav-menu-button:hover {
32 background-color: #ddd;
33}
34.dark #mast .nav-menu-button:hover {
35 background-color: #777;
36}
37
38#mast img.logo:hover {
39 /* need something better */
40 /*background-color: #888;*/
41}
42
43.light #mast .title {
44 color: #369;
45}
46.dark #mast .title {
47 color: #eee;
48}
49
50.light #mast-right a {
51 color: #369;
52}
53
54.dark #mast-right a {
55 color: #eee;
56}
57
58.light #mast nav {
59 color: #369;
60}
61
62.dark #mast nav {
63 color: #eee;
64}
65
66
67/* Theme styles for drop down menu */
68
69.light #mast .dropdown {
70 background-color: #bbb;
71 box-shadow: 0 2px 8px #777;
72}
73
74.dark #mast .dropdown {
75 background-color: #444;
76 box-shadow: 0 2px 8px #111;
77}
78
79.light #mast .dropdown a {
80 color: #369;
81 border-bottom: solid #ccc 1px;
82}
83
84.dark #mast .dropdown a {
85 color: #eee;
86 border-bottom: solid #333 1px;
87}
88
89.light #mast .dropdown a:hover {
90 background-color: #ddd;
91}
92
93.dark #mast .dropdown a:hover {
94 background-color: #777;
95}