OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2016 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 #supervised-user-learn-more { | 5 #container { |
| 6 background-color: white; |
6 display: flex; | 7 display: flex; |
7 flex-direction: column; | 8 flex-direction: column; |
8 width: 722px; | 9 margin: 0 auto; |
| 10 max-width: 722px; |
9 } | 11 } |
10 | 12 |
11 #supervised-user-learn-more-title { | 13 #supervised-user-learn-more-title { |
12 padding: 20px; | 14 padding: 20px; |
13 } | 15 } |
14 | 16 |
15 #supervised-user-learn-more-text { | 17 #supervised-user-learn-more-text { |
16 padding: 0 20px 0 20px; | 18 padding: 0 20px 0 20px; |
17 white-space: pre-wrap; | 19 white-space: pre-wrap; |
18 word-wrap: break-word; | 20 word-wrap: break-word; |
(...skipping 13 matching lines...) Expand all Loading... |
32 url(../../../../ui/resources/default_100_percent/supervised_illustration_s
tart.png) 1x, | 34 url(../../../../ui/resources/default_100_percent/supervised_illustration_s
tart.png) 1x, |
33 url(../../../../ui/resources/default_200_percent/supervised_illustration_s
tart.png) 2x); | 35 url(../../../../ui/resources/default_200_percent/supervised_illustration_s
tart.png) 2x); |
34 background-position: center; | 36 background-position: center; |
35 border-radius: 3px 3px 0 0; | 37 border-radius: 3px 3px 0 0; |
36 height: 344px; | 38 height: 344px; |
37 } | 39 } |
38 | 40 |
39 #supervised-user-learn-more-action-area { | 41 #supervised-user-learn-more-action-area { |
40 padding: 20px; | 42 padding: 20px; |
41 } | 43 } |
| 44 |
| 45 paper-button { |
| 46 border-radius: 2px; |
| 47 font-size: 13px; |
| 48 line-height: 32px; |
| 49 min-width: 52px; |
| 50 padding: 0 16px; |
| 51 } |
OLD | NEW |