| OLD | NEW |
| 1 /** | 1 /** |
| 2 * Copyright 2013 The Chromium Authors. All rights reserved. | 2 * Copyright 2013 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 body { | 7 body { |
| 8 margin: 0; | 8 margin: 0; |
| 9 padding: 0; | 9 padding: 0; |
| 10 } | 10 } |
| 11 | 11 |
| 12 .step.dialog { | 12 .step.dialog { |
| 13 align-items: center; | 13 align-items: center; |
| 14 display: flex; | 14 display: flex; |
| 15 flex-direction: column; | 15 flex-direction: column; |
| 16 height: 475px; | |
| 17 padding: 40px; | 16 padding: 40px; |
| 18 text-align: center; | 17 text-align: center; |
| 19 width: 720px; | 18 width: 720px; |
| 20 } | 19 } |
| 21 | 20 |
| 22 .step.dialog h1 { | 21 .step.dialog h1 { |
| 23 font-size: 30px; | 22 font-size: 30px; |
| 24 margin-bottom: 16px; | 23 margin-bottom: 16px; |
| 25 margin-top: 0; | 24 margin-top: 0; |
| 26 } | 25 } |
| 27 | 26 |
| 28 .step.dialog p { | 27 .step.dialog p { |
| 29 font-size: 15px; | 28 font-size: 15px; |
| 30 margin-bottom: 0; | 29 margin-bottom: 0; |
| 30 margin-top: 0; |
| 31 } | 31 } |
| 32 | 32 |
| 33 .step.dialog .controls { | 33 .step.dialog .controls { |
| 34 display: flex; | 34 margin-bottom: 0; |
| 35 flex-direction: column; | 35 margin-top: 40px; |
| 36 flex-grow: 1; | |
| 37 } | |
| 38 | |
| 39 .step.dialog .controls .margin-top { | |
| 40 flex-grow: 8; | |
| 41 } | |
| 42 | |
| 43 .step.dialog .controls .margin-bottom { | |
| 44 flex-grow: 5; | |
| 45 } | 36 } |
| 46 | 37 |
| 47 .step.dialog .controls button { | 38 .step.dialog .controls button { |
| 48 font-size: 12px; | 39 font-size: 12px; |
| 49 min-width: 0; | 40 min-width: 0; |
| 50 padding: 0 35px; | 41 padding: 0 35px; |
| 51 text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3); | 42 text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3); |
| 52 } | 43 } |
| 53 | 44 |
| 54 .step.dialog .window-header { | 45 .step.dialog .window-header { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 69 -webkit-padding-end: 10px; | 60 -webkit-padding-end: 10px; |
| 70 display: flex; | 61 display: flex; |
| 71 justify-content: flex-end; | 62 justify-content: flex-end; |
| 72 } | 63 } |
| 73 | 64 |
| 74 .step.dialog .topbutton-bar button { | 65 .step.dialog .topbutton-bar button { |
| 75 -webkit-app-region: no-drag; | 66 -webkit-app-region: no-drag; |
| 76 -webkit-margin-end: 0; | 67 -webkit-margin-end: 0; |
| 77 display: inline; | 68 display: inline; |
| 78 } | 69 } |
| 70 |
| 71 .step.dialog .greeting-image { |
| 72 margin-bottom: 49px; |
| 73 margin-top: 64px; |
| 74 } |
| OLD | NEW |