| OLD | NEW |
| (Empty) |
| 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 | |
| 3 found in the LICENSE file. */ | |
| 4 | |
| 5 :host { | |
| 6 display: flex; | |
| 7 flex-direction: column; | |
| 8 position: relative; | |
| 9 } | |
| 10 | |
| 11 .oobe-header { | |
| 12 background-color: var(--google-blue-500); | |
| 13 color: white; | |
| 14 height: 198px; | |
| 15 } | |
| 16 | |
| 17 :host(:not(.disabled)) .oobe-header { | |
| 18 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.17); | |
| 19 /* z-index is needed to make shadow visible. */ | |
| 20 z-index: 1; | |
| 21 } | |
| 22 | |
| 23 .oobe-footer { | |
| 24 background-color: white; | |
| 25 position: relative; | |
| 26 } | |
| 27 | |
| 28 .header-container { | |
| 29 padding: 50px 40px 18px; | |
| 30 } | |
| 31 | |
| 32 .footer-container { | |
| 33 padding: 24px 40px 34px; | |
| 34 } | |
| 35 | |
| 36 ::content div.oobe-body-text { | |
| 37 margin-bottom: 24px; | |
| 38 } | |
| 39 | |
| 40 ::content div.oobe-body-text p { | |
| 41 color: rgba(0, 0, 0, 0.87); | |
| 42 font-size: 14px; | |
| 43 line-height: 20px; | |
| 44 margin: 0; | |
| 45 } | |
| 46 | |
| 47 ::content h1.welcome-message { | |
| 48 color: white; | |
| 49 font-size: 20px; | |
| 50 font-weight: normal; | |
| 51 margin-bottom: 0; | |
| 52 } | |
| 53 | |
| 54 .overlay { | |
| 55 background-color: rgba(0, 0, 0, 0.5); | |
| 56 display: none; | |
| 57 height: 100%; | |
| 58 position: absolute; | |
| 59 right: 0; | |
| 60 top: 0; | |
| 61 width: 100%; | |
| 62 z-index: 11; | |
| 63 } | |
| 64 | |
| 65 :host(.full-disabled) #full-overlay, | |
| 66 :host(.disabled) #bottom-overlay, | |
| 67 | |
| OLD | NEW |