| 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 { |
| 11 color: rgb(85, 149, 254); | 11 color: rgb(85, 149, 254); |
| 12 text-decoration: none; | 12 text-decoration: none; |
| 13 } | 13 } |
| 14 | 14 |
| 15 .picture img { | 15 .picture img { |
| 16 border-radius: 50%; | 16 border-radius: 50%; |
| 17 max-height: 100%; | 17 max-height: 100%; |
| 18 max-width: 100%; | 18 max-width: 100%; |
| 19 } | 19 } |
| 20 | 20 |
| 21 .container { | 21 .container { |
| 22 background-color: white; | 22 background-color: white; |
| 23 height: 351px; | |
| 24 overflow: hidden; | 23 overflow: hidden; |
| 25 width: 448px; | 24 width: 448px; |
| 26 } | 25 } |
| 27 | 26 |
| 28 .top-title-bar { | 27 .top-title-bar { |
| 29 -webkit-padding-start: 24px; | 28 -webkit-padding-start: 24px; |
| 30 align-items: center; | 29 align-items: center; |
| 31 border-bottom: 1px solid lightgray; | 30 border-bottom: 1px solid lightgray; |
| 32 color: #333; | 31 color: #333; |
| 33 display: flex; | 32 display: flex; |
| 34 font-size: 16px; | 33 font-size: 16px; |
| 35 height: 52px; | 34 height: 52px; |
| 36 } | 35 } |
| 37 | 36 |
| 38 .details { | 37 .details { |
| 39 height: 250px; | 38 font-size: 13px; |
| 40 padding: 20px 24px; | 39 padding: 20px 24px; |
| 41 } | 40 } |
| 42 | 41 |
| 43 .sync-message { | 42 .sync-message { |
| 44 color: #595959; | 43 color: #595959; |
| 45 line-height: 150%; | 44 line-height: 150%; |
| 46 padding-bottom: 32px; | 45 padding-bottom: 32px; |
| 47 } | 46 } |
| 48 | 47 |
| 49 #picture-container { | 48 #picture-container { |
| (...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 @keyframes fade-in-icon-bottom-right { | 316 @keyframes fade-in-icon-bottom-right { |
| 318 from { | 317 from { |
| 319 opacity: 0; | 318 opacity: 0; |
| 320 transform: translate(0, 0); | 319 transform: translate(0, 0); |
| 321 } | 320 } |
| 322 to { | 321 to { |
| 323 opacity: 0.1; | 322 opacity: 0.1; |
| 324 transform: translate(4px, 4px); | 323 transform: translate(4px, 4px); |
| 325 } | 324 } |
| 326 } | 325 } |
| OLD | NEW |