| 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 { | |
| 11 color: rgb(85, 149, 254); | |
| 12 text-decoration: none; | |
| 13 } | |
| 14 | |
| 15 .picture img { | 10 .picture img { |
| 16 border-radius: 50%; | 11 border-radius: 50%; |
| 17 max-height: 100%; | 12 max-height: 100%; |
| 18 max-width: 100%; | 13 max-width: 100%; |
| 19 } | 14 } |
| 20 | 15 |
| 21 .container { | 16 .container { |
| 22 background-color: white; | 17 background-color: white; |
| 18 color: #333; |
| 23 overflow: hidden; | 19 overflow: hidden; |
| 24 width: 448px; | 20 width: 448px; |
| 25 } | 21 } |
| 26 | 22 |
| 27 .top-title-bar { | 23 .top-title-bar { |
| 28 -webkit-padding-start: 24px; | |
| 29 align-items: center; | 24 align-items: center; |
| 30 border-bottom: 1px solid lightgray; | 25 border-bottom: 1px solid lightgray; |
| 31 color: #333; | |
| 32 display: flex; | 26 display: flex; |
| 33 font-size: 16px; | 27 font-size: 16px; |
| 34 height: 52px; | 28 height: 52px; |
| 29 padding: 0 24px; |
| 35 } | 30 } |
| 36 | 31 |
| 37 .details { | 32 .details { |
| 38 font-size: 13px; | 33 padding: 0 24px; |
| 39 padding: 20px 24px; | |
| 40 } | |
| 41 | |
| 42 .sync-message { | |
| 43 color: #595959; | |
| 44 line-height: 150%; | |
| 45 padding-bottom: 32px; | |
| 46 } | 34 } |
| 47 | 35 |
| 48 #picture-container { | 36 #picture-container { |
| 49 align-items: center; | 37 align-items: center; |
| 50 display: flex; | 38 display: flex; |
| 51 justify-content: center; | 39 justify-content: center; |
| 52 padding-bottom: 32px; | 40 padding-bottom: 32px; |
| 41 padding-top: 24px; |
| 53 } | 42 } |
| 54 | 43 |
| 55 .picture { | 44 .picture { |
| 56 -webkit-margin-start: 84px; | 45 -webkit-margin-start: 84px; |
| 57 height: 96px; | 46 height: 96px; |
| 58 position: relative; | 47 position: relative; |
| 59 width: 96px; | 48 width: 96px; |
| 60 } | 49 } |
| 61 | 50 |
| 62 #profile-picture, | 51 #profile-picture, |
| 63 .checkmark-circle { | 52 .checkmark-circle { |
| 64 position: absolute; | 53 position: absolute; |
| 65 } | 54 } |
| 66 | 55 |
| 56 .message-container { |
| 57 display: flex; |
| 58 margin-bottom: 16px; |
| 59 } |
| 60 |
| 61 .message-container:last-child { |
| 62 margin-bottom: 32px; |
| 63 } |
| 64 |
| 65 .message-container .logo { |
| 66 -webkit-margin-end: 20px; |
| 67 background-size: cover; |
| 68 flex-shrink: 0; |
| 69 height: 20px; |
| 70 position: relative; |
| 71 top: -2px; |
| 72 width: 20px; |
| 73 } |
| 74 |
| 75 #chrome-logo { |
| 76 background-image: url(../../../../ui/webui/resources/images/200-logo_chrome.pn
g); |
| 77 } |
| 78 |
| 79 #googleg-logo { |
| 80 background-image: url(../../../../ui/webui/resources/images/200-logo_googleg.p
ng); |
| 81 } |
| 82 |
| 83 .message-container .title { |
| 84 font-weight: 500; |
| 85 margin-bottom: 4px; |
| 86 } |
| 87 |
| 88 .message-container .body { |
| 89 color: #646464; |
| 90 } |
| 91 |
| 92 .message-container .text { |
| 93 line-height: 20px; |
| 94 } |
| 95 |
| 96 .message-container #activityControlsCheckbox { |
| 97 -webkit-margin-start: 40px; |
| 98 } |
| 99 |
| 67 .action-container { | 100 .action-container { |
| 68 align-items: baseline; | |
| 69 display: flex; | 101 display: flex; |
| 70 justify-content: flex-end; | 102 justify-content: flex-end; |
| 103 padding: 16px; |
| 71 } | 104 } |
| 72 | 105 |
| 73 paper-button { | 106 #confirmButton, |
| 107 #undoButton { |
| 74 font-weight: 500; | 108 font-weight: 500; |
| 75 line-height: 16px; | 109 line-height: 16px; |
| 76 margin: 0; | 110 margin: 0; |
| 77 padding: 8px 16px; | 111 padding: 8px 16px; |
| 78 } | 112 } |
| 79 | 113 |
| 80 paper-button + paper-button { | |
| 81 -webkit-margin-start: 8px; | |
| 82 } | |
| 83 | |
| 84 #confirmButton { | 114 #confirmButton { |
| 85 background-color: rgb(66, 133, 244); | 115 background-color: rgb(66, 133, 244); |
| 86 color: white; | 116 color: white; |
| 87 } | 117 } |
| 88 | 118 |
| 89 #undoButton { | 119 #undoButton { |
| 120 -webkit-margin-start: 8px; |
| 90 color: #5A5A5A; | 121 color: #5A5A5A; |
| 91 } | 122 } |
| 92 | 123 |
| 93 #illustration { | 124 #illustration { |
| 94 height: 96px; | 125 height: 96px; |
| 95 margin: 0 auto; | 126 margin: 0 auto; |
| 96 position: relative; | 127 position: relative; |
| 97 width: 264px; | 128 width: 264px; |
| 98 } | 129 } |
| 99 | 130 |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 @keyframes fade-in-icon-bottom-right { | 347 @keyframes fade-in-icon-bottom-right { |
| 317 from { | 348 from { |
| 318 opacity: 0; | 349 opacity: 0; |
| 319 transform: translate(0, 0); | 350 transform: translate(0, 0); |
| 320 } | 351 } |
| 321 to { | 352 to { |
| 322 opacity: 0.1; | 353 opacity: 0.1; |
| 323 transform: translate(4px, 4px); | 354 transform: translate(4px, 4px); |
| 324 } | 355 } |
| 325 } | 356 } |
| OLD | NEW |