OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 body { | 4 body { |
5 background-color: rgb(230, 230, 230); | 5 background-color: rgb(230, 230, 230); |
6 font-family: Helvetica, Arial, sans-serif; | 6 font-family: Helvetica, Arial, sans-serif; |
7 font-size: 10pt; | 7 font-size: 10pt; |
8 margin: 50px 40px 20px 40px; | 8 margin: 50px 40px 20px 40px; |
9 text-align: center; | 9 text-align: center; |
10 } | 10 } |
(...skipping 27 matching lines...) Expand all Loading... |
38 a { | 38 a { |
39 color: rgb(17, 85, 204); | 39 color: rgb(17, 85, 204); |
40 text-decoration: none; | 40 text-decoration: none; |
41 } | 41 } |
42 | 42 |
43 .error-img { | 43 .error-img { |
44 /* Can't access chrome:// urls from an untrusted renderer process, so embed | 44 /* Can't access chrome:// urls from an untrusted renderer process, so embed |
45 * the resource manually. */ | 45 * the resource manually. */ |
46 -webkit-user-select: none; | 46 -webkit-user-select: none; |
47 content: -webkit-image-set( | 47 content: -webkit-image-set( |
48 url('../../app/theme/default_100_percent/common/error_managed_mode_blocked
_page.png') 1x, | 48 url('../../app/theme/default_100_percent/common/' |
49 url('../../app/theme/default_200_percent/common/error_managed_mode_blocked
_page.png') 2x); | 49 'error_managed_mode_blocked_page.png') 1x, |
| 50 url('../../app/theme/default_200_percent/common/' |
| 51 'error_managed_mode_blocked_page.png') 2x); |
50 margin-bottom: 10px; | 52 margin-bottom: 10px; |
51 margin-top: 10px; | 53 margin-top: 10px; |
52 } | 54 } |
53 | 55 |
54 #content-top { | 56 #content-top { |
55 margin: 20px 20px 20px 25px; | 57 margin: 20px 20px 20px 25px; |
56 } | 58 } |
57 | 59 |
58 button { | 60 button { |
59 -webkit-user-select: none; | 61 -webkit-user-select: none; |
(...skipping 15 matching lines...) Expand all Loading... |
75 background-image: linear-gradient(rgb(84, 153, 244) 5%, | 77 background-image: linear-gradient(rgb(84, 153, 244) 5%, |
76 rgb(82, 148, 242) 50%, | 78 rgb(82, 148, 242) 50%, |
77 rgb(75, 133, 241)); | 79 rgb(75, 133, 241)); |
78 border: 1px solid rgb(81, 135, 223); | 80 border: 1px solid rgb(81, 135, 223); |
79 border-bottom: 1px solid rgb(56, 112, 207); | 81 border-bottom: 1px solid rgb(56, 112, 207); |
80 box-shadow: inset 0 1px 0 rgb(95, 168, 247); | 82 box-shadow: inset 0 1px 0 rgb(95, 168, 247); |
81 color: rgb(255, 255, 255); | 83 color: rgb(255, 255, 255); |
82 text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2); | 84 text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2); |
83 width: 100px; | 85 width: 100px; |
84 } | 86 } |
OLD | NEW |