OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 10 matching lines...) Expand all Loading... |
21 border-bottom: 1px solid rgb(136, 136, 136); | 21 border-bottom: 1px solid rgb(136, 136, 136); |
22 border-radius: 3px; | 22 border-radius: 3px; |
23 box-shadow: 0 2px 2px rgb(170, 170, 170); | 23 box-shadow: 0 2px 2px rgb(170, 170, 170); |
24 color: black; | 24 color: black; |
25 } | 25 } |
26 | 26 |
27 h1 { | 27 h1 { |
28 color: rgb(102, 102, 102); | 28 color: rgb(102, 102, 102); |
29 font-size: 1.3em; | 29 font-size: 1.3em; |
30 font-weight: normal; | 30 font-weight: normal; |
31 margin: 10px 0 30px 0; | 31 margin: 5px 0 30px 0; |
32 } | |
33 | |
34 #request-sent-message { | |
35 margin-top: 40px; | |
36 } | 32 } |
37 | 33 |
38 a { | 34 a { |
39 color: rgb(17, 85, 204); | 35 color: rgb(17, 85, 204); |
40 text-decoration: none; | 36 text-decoration: none; |
41 } | 37 } |
42 | 38 |
43 .error-img { | 39 .error-img { |
44 /* Can't access chrome:// urls from an untrusted renderer process, so embed | 40 /* Can't access chrome:// urls from an untrusted renderer process, so embed |
45 * the resource manually. */ | 41 * the resource manually. */ |
46 -webkit-user-select: none; | 42 -webkit-user-select: none; |
47 content: -webkit-image-set( | 43 content: -webkit-image-set( |
48 url('../../app/theme/default_100_percent/common/error_managed_mode_blocked
_page.png') 1x, | 44 url('../../app/theme/default_100_percent/common/error_managed_mode_blocked
_page.png') 1x, |
49 url('../../app/theme/default_200_percent/common/error_managed_mode_blocked
_page.png') 2x); | 45 url('../../app/theme/default_200_percent/common/error_managed_mode_blocked
_page.png') 2x); |
50 margin-bottom: 10px; | 46 margin-bottom: 15px; |
51 margin-top: 10px; | 47 margin-top: 10px; |
52 } | 48 } |
53 | 49 |
| 50 .avatar-container { |
| 51 position: relative; |
| 52 } |
| 53 |
| 54 .avatar-img { |
| 55 -webkit-user-select: none; |
| 56 border: 3px solid rgb(251, 251, 251); |
| 57 border-radius: 50%; |
| 58 margin-bottom: 5px; |
| 59 margin-top: 10px; |
| 60 position: relative; |
| 61 } |
| 62 |
54 #content-top { | 63 #content-top { |
55 margin: 20px 25px; | 64 margin: 20px 25px; |
56 } | 65 } |
57 | 66 |
58 button { | 67 button { |
59 -webkit-user-select: none; | 68 -webkit-user-select: none; |
60 background-image: linear-gradient(rgb(246, 246, 246) 5%, | 69 background-image: linear-gradient(rgb(246, 246, 246) 5%, |
61 rgb(239, 239, 239) 50%, | 70 rgb(239, 239, 239) 50%, |
62 rgb(221, 221, 221)); | 71 rgb(221, 221, 221)); |
63 border: 1px solid rgb(209, 209, 211); | 72 border: 1px solid rgb(209, 209, 211); |
(...skipping 22 matching lines...) Expand all Loading... |
86 #back-button { | 95 #back-button { |
87 width: 100px; | 96 width: 100px; |
88 } | 97 } |
89 } | 98 } |
90 | 99 |
91 @media (max-width: 375px) { | 100 @media (max-width: 375px) { |
92 button { | 101 button { |
93 width: 100%; | 102 width: 100%; |
94 } | 103 } |
95 } | 104 } |
OLD | NEW |