blob: 1e99a970dfca7f2b455115ba967aecff4bd10a18 (
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
|
/**
* 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.
*/
.step.bubble {
border: 1px solid;
border-radius: 3px;
display: inline-block;
position: absolute;
width: 400px;
}
.step.bubble h1 {
font-size: 18px;
margin-bottom: 20px;
margin-left: 20px;
margin-right: 20px;
margin-top: 20px;
}
.step.bubble p {
font-size: 14px;
margin-left: 20px;
margin-right: 20px;
}
.step.bubble p + p {
margin-top: 30px;
}
.step.bubble .controls {
margin-bottom: 18px;
margin-left: 18px;
margin-right: 18px;
margin-top: 18px;
text-align: end;
}
.step.bubble .controls button {
font-size: 12px;
min-width: 0;
padding: 0 15px;
text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}
.step.bubble.hidden {
visibility: hidden;
}
|