OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 .popup-overlay { | 5 .popup-overlay { |
6 -webkit-transition: 250ms opacity; | |
7 align-items: center; | 6 align-items: center; |
8 background: rgba(255, 255, 255, .75); | 7 background: rgba(255, 255, 255, .75); |
9 bottom: 0; | 8 bottom: 0; |
10 display: flex; | 9 display: flex; |
11 justify-content: center; | 10 justify-content: center; |
12 left: 0; | 11 left: 0; |
13 padding: 20px; | 12 padding: 20px; |
14 position: fixed; | 13 position: fixed; |
15 right: 0; | 14 right: 0; |
16 top: 0; | 15 top: 0; |
| 16 transition: 250ms opacity; |
17 z-index: 5; | 17 z-index: 5; |
18 } | 18 } |
19 | 19 |
20 .oobe-popup { | 20 .oobe-popup { |
21 background: white; | 21 background: white; |
22 border: 1px solid rgb(188, 193, 208); | 22 border: 1px solid rgb(188, 193, 208); |
23 border-radius: 2px; | 23 border-radius: 2px; |
24 box-shadow: 0 5px 80px #505050; | 24 box-shadow: 0 5px 80px #505050; |
25 min-height: 250px; | 25 min-height: 250px; |
26 position: relative; | 26 position: relative; |
27 width: 460px; | 27 width: 460px; |
28 z-index: 10; | 28 z-index: 10; |
29 } | 29 } |
30 | 30 |
31 .oobe-popup h1 { | 31 .oobe-popup h1 { |
32 -webkit-padding-end: 24px; | 32 -webkit-padding-end: 24px; |
33 -webkit-user-select: none; | 33 -webkit-user-select: none; |
34 background: linear-gradient(white, #F8F8F8); | 34 background: linear-gradient(white, #F8F8F8); |
35 color: rgb(83, 99, 125); | 35 color: rgb(83, 99, 125); |
36 font-size: 105%; | 36 font-size: 105%; |
37 font-weight: bold; | 37 font-weight: bold; |
38 margin: 0; | 38 margin: 0; |
39 padding: 10px 15px 8px 15px; | 39 padding: 10px 15px 8px 15px; |
40 text-shadow: white 0 1px 2px; | 40 text-shadow: white 0 1px 2px; |
41 } | 41 } |
42 | 42 |
43 .popup-content-area { | 43 .popup-content-area { |
44 padding: 20px 20px 60px 20px; | 44 padding: 20px 20px 60px 20px; |
45 } | 45 } |
OLD | NEW |