| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 #navigation h3 { | 5 #navigation h3 { |
| 6 color: rgb(92, 97, 102); | 6 color: rgb(92, 97, 102); |
| 7 font-size: 18px; | 7 font-size: 18px; |
| 8 font-weight: normal; | 8 font-weight: normal; |
| 9 padding-left: 23px; | 9 padding-left: 23px; |
| 10 } | 10 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #navigation li:hover { | 26 #navigation li:hover { |
| 27 color: #777; | 27 color: #777; |
| 28 } | 28 } |
| 29 | 29 |
| 30 #navigation li.selected { | 30 #navigation li.selected { |
| 31 border-left-color: rgb(78, 87, 100); | 31 border-left-color: rgb(78, 87, 100); |
| 32 color: rgb(70, 78, 90); | 32 color: rgb(70, 78, 90); |
| 33 } | 33 } |
| 34 | 34 |
| 35 #navigation #aboutPageNavItem { | |
| 36 margin-top: 27px; | |
| 37 } | |
| 38 | |
| 39 .iframe-container { | 35 .iframe-container { |
| 40 background-color: white; | 36 background-color: white; |
| 41 bottom: 0; | 37 bottom: 0; |
| 42 left: 155px; | 38 left: 155px; |
| 43 position: absolute; | 39 position: absolute; |
| 44 right: 0; | 40 right: 0; |
| 45 top: 0; | 41 top: 0; |
| 46 z-index: 1; | 42 z-index: 1; |
| 47 } | 43 } |
| 48 | 44 |
| 49 .iframe-container.selected { | 45 .iframe-container.selected { |
| 50 z-index: 2; | 46 z-index: 2; |
| 51 } | 47 } |
| 52 | 48 |
| 53 iframe { | 49 iframe { |
| 54 border: none; | 50 border: none; |
| 55 display: block; | 51 display: block; |
| 56 height: 100%; | 52 height: 100%; |
| 57 width: 100%; | 53 width: 100%; |
| 58 } | 54 } |
| OLD | NEW |