Simon Hunt | 195cb38 | 2014-11-03 17:50:51 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2014 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 -- CSS file |
| 19 | |
| 20 | @author Simon Hunt |
| 21 | */ |
| 22 | |
| 23 | #mast { |
| 24 | height: 36px; |
| 25 | padding: 4px; |
| 26 | background-color: #bbb; |
| 27 | vertical-align: baseline; |
| 28 | box-shadow: 0px 2px 8px #777; |
| 29 | } |
| 30 | |
| 31 | #mast img#logo { |
| 32 | height: 38px; |
| 33 | padding-left: 8px; |
| 34 | padding-right: 8px; |
| 35 | } |
| 36 | |
| 37 | #mast span.title { |
| 38 | color: #369; |
| 39 | font-size: 14pt; |
| 40 | font-style: italic; |
| 41 | vertical-align: 12px; |
| 42 | } |
| 43 | |
| 44 | #mast span.right { |
| 45 | padding-top: 8px; |
| 46 | padding-right: 16px; |
| 47 | float: right; |
| 48 | } |
| 49 | |
| 50 | #mast span.radio { |
Simon Hunt | 195cb38 | 2014-11-03 17:50:51 -0800 | [diff] [blame] | 51 | font-size: 10pt; |
Simon Hunt | db9eb07 | 2014-11-04 19:12:46 -0800 | [diff] [blame] | 52 | margin: 4px 2px; |
Simon Hunt | 195cb38 | 2014-11-03 17:50:51 -0800 | [diff] [blame] | 53 | border: 1px dotted #222; |
| 54 | padding: 1px 6px; |
| 55 | color: #eee; |
| 56 | cursor: pointer; |
| 57 | } |
| 58 | |
| 59 | #mast span.radio.active { |
| 60 | background-color: #bbb; |
| 61 | border: 1px solid #eee; |
| 62 | padding: 1px 6px; |
| 63 | color: #666; |
| 64 | font-weight: bold; |
| 65 | } |