blob: 3614e538d9a834bb001c96f64e48e4755e3fc4f3 [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 -- core (theme) -- CSS file
19 */
20
Simon Huntbb0f2672017-03-28 18:52:59 -070021body {
Simon Hunt58894c82016-05-24 15:09:02 -070022 background-color: white;
23}
Simon Huntbb0f2672017-03-28 18:52:59 -070024
25#view h2 {
26 color: #3c3a3a;
Simon Hunt58894c82016-05-24 15:09:02 -070027}
28
Simon Huntbb0f2672017-03-28 18:52:59 -070029a {
30 color: #009fdb;
31 text-decoration: none;
Simon Hunt58894c82016-05-24 15:09:02 -070032}
Simon Huntbb0f2672017-03-28 18:52:59 -070033a:hover {
34 text-decoration: underline;
35}
36a:visited {
37 color: #7fabdb;
38 text-decoration: none;
39}
40
41/* ========== DARK Theme ========== */
42
43body.dark {
44 background-color: #282528;
45}
46
Simon Hunt58894c82016-05-24 15:09:02 -070047.dark #view h2 {
Simon Huntbb0f2672017-03-28 18:52:59 -070048 color: #6a6e6a;
Simon Hunt58894c82016-05-24 15:09:02 -070049}
Simon Huntbb0f2672017-03-28 18:52:59 -070050
51.dark a {
52 color: #007ca6;
53}
54.dark a:visited {
55 color: #4f6e90;
56}
57
58.dark input {
59 color: #dddddd;
60 background-color: #222222;
61 border: 1px solid #666666;
62}
63
64.dark select {
65 color: #dddddd;
66 background-color: #222222;
67}