| 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; | |
| 128 margin-bottom: -1px; | 127 margin-bottom: -1px; |
| 129 overflow: hidden; | 128 overflow: hidden; |
| 130 } | 129 } |
| 131 | 130 |
| 132 .entry-box, | 131 .entry-box, |
| 133 #search-field, | 132 #search-field, |
| 134 #results-pagination button { | 133 #results-pagination button { |
| 135 height: 60px; | 134 height: 60px; |
| 136 } | 135 } |
| 137 | 136 |
| 137 .entry-box-container { |
| 138 display: block; |
| 139 } |
| 140 |
| 138 input { | 141 input { |
| 139 border-radius: 0; | 142 border-radius: 0; |
| 140 } | 143 } |
| 141 | 144 |
| 142 #clear-browsing-data { | 145 #clear-browsing-data { |
| 143 /* Style it like a native Android button. */ | 146 /* Style it like a native Android button. */ |
| 144 background-color: rgb(221, 221, 221); | 147 background-color: rgb(221, 221, 221); |
| 145 border: 0; | 148 border: 0; |
| 146 border-radius: 0; | 149 border-radius: 0; |
| 147 border-top: 1px solid rgb(198, 198, 198); | 150 border-top: 1px solid rgb(198, 198, 198); |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 | 241 |
| 239 h1, | 242 h1, |
| 240 #notification-bar, | 243 #notification-bar, |
| 241 #loading-spinner, | 244 #loading-spinner, |
| 242 .no-results-message { | 245 .no-results-message { |
| 243 padding-left: 0; | 246 padding-left: 0; |
| 244 padding-right: 0; | 247 padding-right: 0; |
| 245 } | 248 } |
| 246 | 249 |
| 247 } /* @media only screen and (max-width:720px) */ | 250 } /* @media only screen and (max-width:720px) */ |
| OLD | NEW |