| OLD | NEW |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2013 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 /* This file contains styles specific to Android and iOS. */ | 5 /* This file contains styles specific to Android and iOS. */ |
| 6 | 6 |
| 7 body { | 7 body { |
| 8 color: rgb(76, 76, 76); | 8 color: rgb(76, 76, 76); |
| 9 margin: 0; | 9 margin: 0; |
| 10 margin-bottom: 46px; | 10 margin-bottom: 46px; |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 margin-bottom: 0; | 117 margin-bottom: 0; |
| 118 margin-top: 0; | 118 margin-top: 0; |
| 119 padding-bottom: 0; | 119 padding-bottom: 0; |
| 120 } | 120 } |
| 121 | 121 |
| 122 h3, | 122 h3, |
| 123 .entry, | 123 .entry, |
| 124 #search-field { | 124 #search-field { |
| 125 border-bottom: 1px solid rgb(220, 220, 220); | 125 border-bottom: 1px solid rgb(220, 220, 220); |
| 126 border-top: 1px solid rgb(220, 220, 220); | 126 border-top: 1px solid rgb(220, 220, 220); |
| 127 display: block; |
| 127 margin-bottom: -1px; | 128 margin-bottom: -1px; |
| 128 overflow: hidden; | 129 overflow: hidden; |
| 129 } | 130 } |
| 130 | 131 |
| 131 .entry-box, | 132 .entry-box, |
| 132 #search-field, | 133 #search-field, |
| 133 #results-pagination button { | 134 #results-pagination button { |
| 134 height: 60px; | 135 height: 60px; |
| 135 } | 136 } |
| 136 | 137 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 | 238 |
| 238 h1, | 239 h1, |
| 239 #notification-bar, | 240 #notification-bar, |
| 240 #loading-spinner, | 241 #loading-spinner, |
| 241 .no-results-message { | 242 .no-results-message { |
| 242 padding-left: 0; | 243 padding-left: 0; |
| 243 padding-right: 0; | 244 padding-right: 0; |
| 244 } | 245 } |
| 245 | 246 |
| 246 } /* @media only screen and (max-width:720px) */ | 247 } /* @media only screen and (max-width:720px) */ |
| OLD | NEW |