Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 margin: 0; | 6 margin: 0; |
| 7 padding: 0; | 7 padding: 0; |
| 8 } | 8 } |
| 9 | 9 |
| 10 a { | 10 a { |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 29 -webkit-padding-start: 24px; | 29 -webkit-padding-start: 24px; |
| 30 align-items: center; | 30 align-items: center; |
| 31 border-bottom: 1px solid lightgray; | 31 border-bottom: 1px solid lightgray; |
| 32 color: #333; | 32 color: #333; |
| 33 display: flex; | 33 display: flex; |
| 34 font-size: 16px; | 34 font-size: 16px; |
| 35 height: 52px; | 35 height: 52px; |
| 36 } | 36 } |
| 37 | 37 |
| 38 .details { | 38 .details { |
| 39 font-size: 13px; | |
|
Dan Beam
2016/03/17 22:37:26
how does this differ from the effective font-size
anthonyvd
2016/03/18 18:01:48
This way, the font size doesn't change when Conten
Dan Beam
2016/03/18 18:10:08
a) I'm not sure I agree with "this isn't content"
| |
| 39 height: 250px; | 40 height: 250px; |
| 40 padding: 20px 24px; | 41 padding: 20px 24px; |
| 41 } | 42 } |
| 42 | 43 |
| 43 .sync-message { | 44 .sync-message { |
| 44 color: #595959; | 45 color: #595959; |
| 45 line-height: 150%; | 46 line-height: 150%; |
| 46 padding-bottom: 32px; | 47 padding-bottom: 32px; |
| 47 } | 48 } |
| 48 | 49 |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 317 @keyframes fade-in-icon-bottom-right { | 318 @keyframes fade-in-icon-bottom-right { |
| 318 from { | 319 from { |
| 319 opacity: 0; | 320 opacity: 0; |
| 320 transform: translate(0, 0); | 321 transform: translate(0, 0); |
| 321 } | 322 } |
| 322 to { | 323 to { |
| 323 opacity: 0.1; | 324 opacity: 0.1; |
| 324 transform: translate(4px, 4px); | 325 transform: translate(4px, 4px); |
| 325 } | 326 } |
| 326 } | 327 } |
| OLD | NEW |