blob: 52e424eeb3e9f0e9aba1d05b390d8b2450d107ca (
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
|
/**
* 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 {
background: white;
color: #8c8c8c;
padding: 0;
}
.step h1 {
color: #333;
font-weight: normal;
}
.step p {
line-height: 1.5;
}
.step button.blue-button {
color: white;
}
.step button.white-button {
color: black;
}
.step .controls button {
margin: 0 3px;
}
.step .controls button:first-of-type {
-webkit-margin-start: 0;
}
.step .controls button:last-of-type {
-webkit-margin-end: 0;
}
|