blob: 6787c23a1ce77f06156c4aa0d9defaa2b9c85487 [file] [log] [blame]
Simon Huntef31fb22014-12-19 13:16:44 -08001/*
Simon Hunt8ead3a22015-01-06 11:00:15 -08002 * Copyright 2014,2015 Open Networking Laboratory
Simon Huntef31fb22014-12-19 13:16:44 -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 -- Sample View -- CSS file
Simon Huntef31fb22014-12-19 13:16:44 -080019 */
20
Simon Hunt7be1be42015-02-26 17:20:33 -080021.light #ov-sample {
22 color: navy;
23}
24
25.dark #ov-sample {
26 color: #1e5e6f;
27}
28
29.dark a {
30 color: #88c;
31}
32
Simon Huntef31fb22014-12-19 13:16:44 -080033#ov-sample .msg {
Simon Huntef31fb22014-12-19 13:16:44 -080034 color: darkorange;
Simon Hunt7be1be42015-02-26 17:20:33 -080035}
36
37.light #ov-sample .msg {
38 color: darkorange;
39}
40
41.dark #ov-sample .msg {
42 color: #904e00;
43}
44