OLD | NEW |
1 /* Copyright 2017 The Chromium Authors. All rights reserved. | 1 /* Copyright 2017 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 body { | 5 body { |
6 -webkit-font-smoothing: antialiased; | 6 -webkit-font-smoothing: antialiased; |
7 font-size: 100%; | 7 font-size: 100%; |
8 margin: 0; | 8 margin: 0; |
9 } | 9 } |
10 | 10 |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 } | 292 } |
293 | 293 |
294 /* Very narrow screens. */ | 294 /* Very narrow screens. */ |
295 @media (max-width: 240px) { | 295 @media (max-width: 240px) { |
296 .content { | 296 .content { |
297 min-width: 192px; | 297 min-width: 192px; |
298 padding-left: 24px; | 298 padding-left: 24px; |
299 padding-right: 24px; | 299 padding-right: 24px; |
300 } | 300 } |
301 } | 301 } |
| 302 |
| 303 /** Miscellaneous ----------------------------------------------------------- */ |
| 304 |
| 305 #font-size-estimator { |
| 306 position: absolute; |
| 307 visibility: hidden; |
| 308 } |
OLD | NEW |