blob: 9fd6057acbd110f088387e0e2c89b2b71d085265 (
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
/* Copyright (c) 2011 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.
*/
html {
font-family: segoe ui, arial, helvetica, sans-serif;
font-size: 13px;
height: 100%;
}
body {
background-image: -webkit-linear-gradient(
rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.04));
}
#sync-setup-overlay {
background-color: transparent;
width: 100%;
}
#sync-setup-login {
margin: 0 auto;
max-width: 900px;
min-width: 830px;
width: auto;
}
#sync-setup-configure {
background-color: transparent;
margin-left: auto;
margin-right: auto;
width: 600px;
}
#sync-setup-login-promo-column {
margin-right: 385px;
}
html[dir='rtl'] #sync-setup-login-promo-column {
margin-left: 385px;
margin-right: 0;
}
#sync-setup-login-content-column {
float: right;
width: 335px;
}
html[dir='rtl'] #sync-setup-login-content-column {
float: left;
}
#promo-title {
display: block;
margin-top: 33px;
margin-bottom: 64px;
text-align: center;
}
#promo-infographic {
margin-top: 14px;
}
#promo-skip {
clear: both;
display: block;
padding-top: 85px;
text-align: center;
}
#promo-advanced-link {
font-size: 85%;
margin: 0 10px;
}
#sync-setup-login h1 {
color: #222;
font-size: 27px;
font-weight: normal;
}
#sync-setup-login-promo-column h2 {
color: #222;
font-size: 18px;
font-weight: normal;
}
#sync-setup-login-promo-column h3 {
color: #222;
font-size: 13px;
line-height: 13px;
}
#sync-setup-login-promo-column p {
color: #222;
font-size: 13px;
line-height: 20px;
}
#promo-info-pane {
height: 186px;
position: relative;
}
#promo-info-pane > * {
-webkit-transition: opacity .2s linear;
opacity: 1;
position: absolute;
}
#promo-info-pane > [hidden] {
display: inline-block; /* Override default user-agent styles. */
opacity: 0;
}
|