| OLD | NEW |
| 1 /* Copyright 2016 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 :host { | 5 #header-container { |
| 6 background-color: white; | 6 padding: 64px 64px 0 64px; |
| 7 display: flex; | |
| 8 flex-direction: column; | |
| 9 position: relative; | |
| 10 width: 582px; | |
| 11 } | |
| 12 | |
| 13 .oobe-icon-div { | |
| 14 --iron-icon-height: 20px; | |
| 15 --iron-icon-width: 20px; | |
| 16 color: var(--google-blue-500); | |
| 17 } | 7 } |
| 18 | 8 |
| 19 .oobe-header { | 9 .oobe-header { |
| 20 color: black; | 10 min-height: 84px; /* 64 title + 20 subtitle */ |
| 21 height: 150px; | |
| 22 } | 11 } |
| 23 | 12 |
| 24 .oobe-footer { | 13 #footer-container { |
| 25 position: relative; | 14 padding: 44px 64px 0 64px; |
| 26 } | |
| 27 | |
| 28 .header-container { | |
| 29 padding: 50px 40px 18px; | |
| 30 } | |
| 31 | |
| 32 .footer-container { | |
| 33 overflow-y: auto; | |
| 34 padding: 24px 40px 34px; | |
| 35 } | 15 } |
| 36 | 16 |
| 37 #oobe-bottom { | 17 #oobe-bottom { |
| 38 box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.14); | 18 box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.14); |
| 39 padding: 24px 40px 34px; | 19 height: 80px; |
| 20 padding: 0 24px 0 24px; |
| 40 z-index: 1; | 21 z-index: 1; |
| 41 } | 22 } |
| 42 | |
| 43 ::content div.oobe-body-text { | |
| 44 margin-bottom: 24px; | |
| 45 } | |
| 46 | |
| 47 ::content div.oobe-body-text p { | |
| 48 color: rgba(0, 0, 0, 0.87); | |
| 49 font-size: 14px; | |
| 50 line-height: 20px; | |
| 51 margin: 0; | |
| 52 } | |
| 53 | |
| 54 ::content h1.welcome-message { | |
| 55 color: rgba(0, 0, 0, 0.87); | |
| 56 font-size: 20px; | |
| 57 font-weight: normal; | |
| 58 margin-bottom: 0; | |
| 59 } | |
| 60 | |
| 61 ::content h1.welcome-message-hint { | |
| 62 color: rgba(0, 0, 0, 0.87); | |
| 63 font-size: 12px; | |
| 64 font-weight: normal; | |
| 65 margin-bottom: 0; | |
| 66 } | |
| 67 | |
| 68 | |
| OLD | NEW |