| 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 body { | 5 body { |
| 6 margin: 10px; | 6 margin: 10px; |
| 7 min-width: 47em; | 7 min-width: 47em; |
| 8 } | 8 } |
| 9 | 9 |
| 10 a { | 10 a { |
| 11 color: blue; | 11 color: blue; |
| 12 font-size: 103%; | 12 font-size: 103%; |
| 13 } | 13 } |
| 14 | 14 |
| 15 div#header { | 15 div#header { |
| 16 -webkit-padding-start: 0; | 16 -webkit-padding-start: 0; |
| 17 box-sizing: border-box; | 17 box-sizing: border-box; |
| 18 margin-bottom: 1.05em; | 18 margin-bottom: 1.05em; |
| 19 /* 67px is the height of the header's background image. */ | 19 /* 67px is the height of the header's background image. */ |
| 20 min-height: 67px; | 20 min-height: 67px; |
| 21 overflow: hidden; | 21 overflow: hidden; |
| 22 padding-bottom: 20px; | 22 padding-bottom: 20px; |
| 23 padding-top: 20px; | 23 padding-top: 20px; |
| 24 position: relative; | 24 position: relative; |
| 25 } | 25 } |
| 26 | 26 |
| 27 #header h1 { | 27 #header h1 { |
| 28 background: url('../../app/theme/default_100_percent/extensions_section.png')
0 20px no-repeat; | 28 background: -webkit-image-set( |
| 29 url('../../app/theme/default_100_percent/extensions_section.png') 1x, |
| 30 url('../../app/theme/default_200_percent/extensions_section.png') 2x) |
| 31 0 20px no-repeat; |
| 29 display: inline; | 32 display: inline; |
| 30 margin: 0; | 33 margin: 0; |
| 31 padding-bottom: 20px; | 34 padding-bottom: 20px; |
| 32 padding-left: 75px; | 35 padding-left: 75px; |
| 33 padding-top: 40px; | 36 padding-top: 40px; |
| 34 } | 37 } |
| 35 | 38 |
| 36 html[dir=rtl] #header h1 { | 39 html[dir=rtl] #header h1 { |
| 37 background: url('../../app/theme/default_100_percent/extensions_section.png')
right no-repeat; | 40 background: -webkit-image-set( |
| 41 url('../../app/theme/default_100_percent/extensions_section.png') 1x, |
| 42 url('../../app/theme/default_200_percent/extensions_section.png') 2x) |
| 43 right no-repeat; |
| 38 padding-left: 0; | 44 padding-left: 0; |
| 39 padding-right: 95px; | 45 padding-right: 95px; |
| 40 } | 46 } |
| 41 | 47 |
| 42 h1 { | 48 h1 { |
| 43 font-size: 156%; | 49 font-size: 156%; |
| 44 font-weight: bold; | 50 font-weight: bold; |
| 45 margin: 0; | 51 margin: 0; |
| 46 padding: 0; | 52 padding: 0; |
| 47 } | 53 } |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 margin-top: 0.2em; | 244 margin-top: 0.2em; |
| 239 } | 245 } |
| 240 | 246 |
| 241 .always-allow { | 247 .always-allow { |
| 242 -webkit-margin-start: 30px; | 248 -webkit-margin-start: 30px; |
| 243 } | 249 } |
| 244 | 250 |
| 245 button { | 251 button { |
| 246 font-size: 104%; | 252 font-size: 104%; |
| 247 } | 253 } |
| OLD | NEW |