1/**
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
4 * found in the LICENSE file.
5 */
6
7body {
8  margin: 0;
9  padding: 0;
10}
11
12.step.dialog {
13  align-items: center;
14  display: flex;
15  flex-direction: column;
16  padding: 40px;
17  text-align: center;
18  width: 720px;
19}
20
21.step.dialog h1 {
22  font-size: 30px;
23  margin-bottom: 16px;
24  margin-top: 0;
25}
26
27.step.dialog p {
28  font-size: 15px;
29  margin-bottom: 0;
30  margin-top: 0;
31}
32
33.step.dialog .controls {
34  margin-bottom: 0;
35  margin-top: 40px;
36}
37
38.step.dialog .controls button {
39  font-size: 12px;
40  min-width: 0;
41  padding: 0 35px;
42  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
43}
44
45.step.dialog .window-header {
46  -webkit-app-region: drag;
47  display: block;
48  left: 0;
49  position: absolute;
50  right: 0;
51  top: 0;
52}
53
54.step.dialog .topbutton-bar {
55  display: block;
56  margin-top: 10px;
57}
58
59.step.dialog .topbutton-wrapper {
60  -webkit-padding-end: 10px;
61  display: flex;
62  justify-content: flex-end;
63}
64
65.step.dialog .topbutton-bar button {
66  -webkit-app-region: no-drag;
67  -webkit-margin-end: 0;
68  display: inline;
69}
70
71.step.dialog .greeting-image {
72  margin-bottom: 49px;
73  margin-top: 64px;
74}
75