blob: d22a9a7b841143a72d48c648acd19d01f68c0df8 (
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. */
#managed-user-learn-more {
width: 722px;
}
#managed-user-learn-more-title {
padding: 20px;
}
#managed-user-learn-more-text {
padding: 0 20px 0 20px;
white-space: pre-wrap;
word-wrap: break-word;
}
@media only screen and (max-height:500px) {
/* Omit the image on very small screens. */
#managed-user-learn-more-image {
display: none;
}
} /* @media only screen and (max-height:500px) */
#managed-user-learn-more-image {
-webkit-border-radius: 3px 3px 0 0;
-webkit-box-flex: 1;
background-image: -webkit-image-set(
url('../../../../ui/resources/default_100_percent/supervised_illustration_start.png') 1x,
url('../../../../ui/resources/default_200_percent/supervised_illustration_start.png') 2x);
background-position: center;
height: 344px;
}
#managed-user-learn-more-action-area {
padding: 20px;
}
|