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