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
7.step.bubble {
8  border: 1px solid;
9  border-radius: 3px;
10  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
11  display: inline-block;
12  position: absolute;
13  width: 400px;
14}
15
16.step.bubble h1 {
17  font-size: 18px;
18  margin-bottom: 20px;
19  margin-left: 20px;
20  margin-right: 20px;
21  margin-top: 20px;
22}
23
24.step.bubble p {
25  font-size: 14px;
26  margin-left: 20px;
27  margin-right: 20px;
28}
29
30.step.bubble p + p {
31  margin-top: 30px;
32}
33
34.step.bubble .controls {
35  margin-bottom: 18px;
36  margin-left: 18px;
37  margin-right: 18px;
38  margin-top: 18px;
39  text-align: end;
40}
41
42.step.bubble .controls button {
43  font-size: 12px;
44  min-width: 0;
45  padding: 0 15px;
46  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
47}
48
49.step.bubble.hidden {
50  visibility: hidden;
51}
52