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 */ | 4 */ |
5 | 5 |
6 /* This file holds CSS that should be shared, in theory, by all user-visible | 6 /* This file holds CSS that should be shared, in theory, by all user-visible |
7 * chrome:// pages. This contrasts chrome_shared.css, which it is meant to | 7 * chrome:// pages. This contrasts chrome_shared.css, which it is meant to |
8 * replace, but has CSS specific to options and options-like pages. */ | 8 * replace, but has CSS specific to options and options-like pages. */ |
9 | 9 |
10 /* Prevent CSS from overriding the hidden property. */ | 10 /* Prevent CSS from overriding the hidden property. */ |
11 [hidden] { | 11 [hidden] { |
12 display: none !important; | 12 display: none !important; |
13 } | 13 } |
14 | 14 |
15 body { | 15 body { |
16 cursor: default; | 16 cursor: default; |
17 font-family: Open Sans, sans-serif; | 17 font-family: Open Sans, sans-serif; |
18 font-size: 12px; | 18 font-size: 12px; |
19 margin: 0; | 19 margin: 0; |
20 } | 20 } |
21 | 21 |
| 22 body.uber-frame { |
| 23 -webkit-margin-start: 155px; |
| 24 } |
| 25 |
22 p { | 26 p { |
23 line-height: 22px; | 27 line-height: 22px; |
24 } | 28 } |
25 | 29 |
26 h1 { | 30 h1 { |
27 -webkit-user-select: none; | 31 -webkit-user-select: none; |
28 color: rgb(48, 57, 66); | 32 color: rgb(48, 57, 66); |
29 font-size: 18px; | 33 font-size: 18px; |
30 font-weight: normal; | 34 font-weight: normal; |
31 margin-top: 1em; | 35 margin-top: 1em; |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 * For now it's a bandaid until we install open sans properly. */ | 122 * For now it's a bandaid until we install open sans properly. */ |
119 <if expr="not pp_ifdef('chromeos')"> | 123 <if expr="not pp_ifdef('chromeos')"> |
120 @font-face { | 124 @font-face { |
121 font-family: 'Open Sans'; | 125 font-family: 'Open Sans'; |
122 font-style: normal; | 126 font-style: normal; |
123 font-weight: 400; | 127 font-weight: 400; |
124 src: local('Open Sans'), local('OpenSans'), | 128 src: local('Open Sans'), local('OpenSans'), |
125 url('chrome://resources/fonts/open_sans.woff') format('woff'); | 129 url('chrome://resources/fonts/open_sans.woff') format('woff'); |
126 } | 130 } |
127 </if> | 131 </if> |
OLD | NEW |