| OLD | NEW |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 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 | 5 |
| 6 html { | 6 html { |
| 7 background-color: #ddd; | 7 background-color: #ddd; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #spacer { | 10 #spacer { |
| 11 height: 200px; | 11 height: 200px; |
| 12 } | 12 } |
| 13 | 13 |
| 14 #title { | 14 #title { |
| 15 color: #555; | 15 color: #555; |
| 16 font-size: 400%; | |
| 17 font-weight: bold; | 16 font-weight: bold; |
| 17 height: 200px; |
| 18 vertical-align: middle; | 18 vertical-align: middle; |
| 19 } | 19 } |
| 20 | 20 |
| 21 #mostVisitedThumb { | 21 #mostVisitedThumb { |
| 22 display: inline-block; | 22 background-repeat: no-repeat; |
| 23 height: 132px; | 23 height: 200px; |
| 24 margin-left: 20px; | 24 margin-left: 20px; |
| 25 position: relative; | 25 padding-left: 20px; |
| 26 vertical-align: middle; | 26 vertical-align: middle; |
| 27 width: 212px; | 27 width: 212px; |
| 28 } | 28 } |
| 29 | |
| 30 #mostVisitedThumb span { | |
| 31 background-repeat: no-repeat; | |
| 32 bottom: -23px; | |
| 33 padding-left: 20px; | |
| 34 position: absolute; | |
| 35 white-space: nowrap; | |
| 36 } | |
| OLD | NEW |