| 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 .picture img { | 10 .picture img { |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 } | 104 } |
| 105 | 105 |
| 106 #confirmButton, | 106 #confirmButton, |
| 107 #undoButton { | 107 #undoButton { |
| 108 font-weight: 500; | 108 font-weight: 500; |
| 109 line-height: 16px; | 109 line-height: 16px; |
| 110 margin: 0; | 110 margin: 0; |
| 111 padding: 8px 16px; | 111 padding: 8px 16px; |
| 112 } | 112 } |
| 113 | 113 |
| 114 #confirmButton { | |
| 115 background-color: rgb(66, 133, 244); | |
| 116 color: white; | |
| 117 } | |
| 118 | |
| 119 #undoButton { | 114 #undoButton { |
| 120 -webkit-margin-start: 8px; | 115 -webkit-margin-start: 8px; |
| 121 color: #5A5A5A; | |
| 122 } | 116 } |
| 123 | 117 |
| 124 #illustration { | 118 #illustration { |
| 125 height: 96px; | 119 height: 96px; |
| 126 margin: 0 auto; | 120 margin: 0 auto; |
| 127 position: relative; | 121 position: relative; |
| 128 width: 264px; | 122 width: 264px; |
| 129 } | 123 } |
| 130 | 124 |
| 131 #checkmark-circle { | 125 #checkmark-circle { |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 347 @keyframes fade-in-icon-bottom-right { | 341 @keyframes fade-in-icon-bottom-right { |
| 348 from { | 342 from { |
| 349 opacity: 0; | 343 opacity: 0; |
| 350 transform: translate(0, 0); | 344 transform: translate(0, 0); |
| 351 } | 345 } |
| 352 to { | 346 to { |
| 353 opacity: 0.1; | 347 opacity: 0.1; |
| 354 transform: translate(4px, 4px); | 348 transform: translate(4px, 4px); |
| 355 } | 349 } |
| 356 } | 350 } |
| OLD | NEW |