Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 1 | /* |
Brian O'Connor | a09fe5b | 2017-08-03 21:12:30 -0700 | [diff] [blame] | 2 | * Copyright 2016-present Open Networking Foundation |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 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 Hunt | bb0f267 | 2017-03-28 18:52:59 -0700 | [diff] [blame] | 21 | body { |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 22 | background-color: white; |
| 23 | } |
Simon Hunt | bb0f267 | 2017-03-28 18:52:59 -0700 | [diff] [blame] | 24 | |
| 25 | #view h2 { |
| 26 | color: #3c3a3a; |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 27 | } |
| 28 | |
Simon Hunt | bb0f267 | 2017-03-28 18:52:59 -0700 | [diff] [blame] | 29 | a { |
| 30 | color: #009fdb; |
| 31 | text-decoration: none; |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 32 | } |
Simon Hunt | bb0f267 | 2017-03-28 18:52:59 -0700 | [diff] [blame] | 33 | a:hover { |
| 34 | text-decoration: underline; |
| 35 | } |
| 36 | a:visited { |
| 37 | color: #7fabdb; |
| 38 | text-decoration: none; |
| 39 | } |
| 40 | |
| 41 | /* ========== DARK Theme ========== */ |
| 42 | |
| 43 | body.dark { |
| 44 | background-color: #282528; |
| 45 | } |
| 46 | |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 47 | .dark #view h2 { |
Simon Hunt | bb0f267 | 2017-03-28 18:52:59 -0700 | [diff] [blame] | 48 | color: #6a6e6a; |
Simon Hunt | 58894c8 | 2016-05-24 15:09:02 -0700 | [diff] [blame] | 49 | } |
Simon Hunt | bb0f267 | 2017-03-28 18:52:59 -0700 | [diff] [blame] | 50 | |
| 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 | } |