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 .picture img { | 5 .picture img { |
6 border-radius: 50%; | 6 border-radius: 50%; |
7 max-height: 100%; | 7 max-height: 100%; |
8 max-width: 100%; | 8 max-width: 100%; |
9 } | 9 } |
10 | 10 |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 } | 73 } |
74 | 74 |
75 .message-container #activityControlsCheckbox { | 75 .message-container #activityControlsCheckbox { |
76 -webkit-margin-start: 40px; | 76 -webkit-margin-start: 40px; |
77 } | 77 } |
78 | 78 |
79 #undoButton { | 79 #undoButton { |
80 -webkit-margin-start: 8px; | 80 -webkit-margin-start: 8px; |
81 } | 81 } |
82 | 82 |
| 83 #syncDisabledDetails { |
| 84 line-height: 20px; |
| 85 margin-bottom: 8px; |
| 86 margin-top: 16px; |
| 87 padding: 0 24px; |
| 88 } |
| 89 |
83 #illustration { | 90 #illustration { |
84 height: 96px; | 91 height: 96px; |
85 margin: 0 auto; | 92 margin: 0 auto; |
86 position: relative; | 93 position: relative; |
87 width: 264px; | 94 width: 264px; |
88 } | 95 } |
89 | 96 |
90 #checkmark-circle { | 97 #checkmark-circle { |
91 background: rgb(66, 133, 244); | 98 background: rgb(66, 133, 244); |
92 border: 2px solid #fff; | 99 border: 2px solid #fff; |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 @keyframes fade-in-icon-bottom-right { | 313 @keyframes fade-in-icon-bottom-right { |
307 from { | 314 from { |
308 opacity: 0; | 315 opacity: 0; |
309 transform: translate(0, 0); | 316 transform: translate(0, 0); |
310 } | 317 } |
311 to { | 318 to { |
312 opacity: 0.1; | 319 opacity: 0.1; |
313 transform: translate(4px, 4px); | 320 transform: translate(4px, 4px); |
314 } | 321 } |
315 } | 322 } |
OLD | NEW |