| 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 |
| 35 .iframe-container { | 39 .iframe-container { |
| 36 background-color: white; | 40 background-color: white; |
| 37 bottom: 0; | 41 bottom: 0; |
| 38 left: 155px; | 42 left: 155px; |
| 39 position: absolute; | 43 position: absolute; |
| 40 right: 0; | 44 right: 0; |
| 41 top: 0; | 45 top: 0; |
| 42 z-index: 1; | 46 z-index: 1; |
| 43 } | 47 } |
| 44 | 48 |
| 45 .iframe-container.selected { | 49 .iframe-container.selected { |
| 46 z-index: 2; | 50 z-index: 2; |
| 47 } | 51 } |
| 48 | 52 |
| 49 iframe { | 53 iframe { |
| 50 border: none; | 54 border: none; |
| 51 display: block; | 55 display: block; |
| 52 height: 100%; | 56 height: 100%; |
| 53 width: 100%; | 57 width: 100%; |
| 54 } | 58 } |
| OLD | NEW |