| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 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-attachment: fixed !important; | 5 background-attachment: fixed !important; |
| 6 background-color: white; | 6 background-color: white; |
| 7 cursor: default; | 7 cursor: default; |
| 8 font-family: arial, sans-serif; | 8 font-family: arial, sans-serif; |
| 9 font-size: small; | 9 font-size: small; |
| 10 margin: 0; | 10 margin: 0; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 body.fakebox-disable #fakebox { | 29 body.fakebox-disable #fakebox { |
| 30 border-color: rgb(238, 238, 238); | 30 border-color: rgb(238, 238, 238); |
| 31 cursor: default; | 31 cursor: default; |
| 32 } | 32 } |
| 33 | 33 |
| 34 body.fakebox-disable #fakebox > input { | 34 body.fakebox-disable #fakebox > input { |
| 35 cursor: default; | 35 cursor: default; |
| 36 } | 36 } |
| 37 | 37 |
| 38 #logo { | 38 #logo { |
| 39 background-image: -webkit-image-set( | 39 background-image: url('images/google_logo.png@2x'); |
| 40 url('images/google_logo.png') 1x, | |
| 41 url('images/google_logo.png@2x') 2x); | |
| 42 background-repeat: no-repeat; | 40 background-repeat: no-repeat; |
| 43 background-size: 269px 95px; | 41 background-size: 269px 95px; |
| 44 height: 95px; | 42 height: 95px; |
| 45 margin-bottom: 24px; | 43 margin-bottom: 24px; |
| 46 margin-top: 157px; | 44 margin-top: 157px; |
| 47 width: 269px; | 45 width: 269px; |
| 48 } | 46 } |
| 49 | 47 |
| 50 body.alternate-logo #logo { | 48 body.alternate-logo #logo { |
| 51 background-image: url(images/white_google_logo.png); | 49 background-image: url('images/white_google_logo.png@2x'); |
| 52 } | 50 } |
| 53 | 51 |
| 54 #fakebox { | 52 #fakebox { |
| 55 /* Use GPU compositing if available. */ | 53 /* Use GPU compositing if available. */ |
| 56 -webkit-transform: translate3d(0, 0, 0); | 54 -webkit-transform: translate3d(0, 0, 0); |
| 57 -webkit-transition: -webkit-transform 100ms linear, border-color 100ms linear; | 55 -webkit-transition: -webkit-transform 100ms linear, border-color 100ms linear; |
| 58 background-color: #fff; | 56 background-color: #fff; |
| 59 border: 1px solid rgb(185, 185, 185); | 57 border: 1px solid rgb(185, 185, 185); |
| 60 border-radius: 1px; | 58 border-radius: 1px; |
| 61 border-top-color: rgb(160, 160, 160); | 59 border-top-color: rgb(160, 160, 160); |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 opacity: 0.9; | 332 opacity: 0.9; |
| 335 padding: 3px; | 333 padding: 3px; |
| 336 position: fixed; | 334 position: fixed; |
| 337 right: 8px; | 335 right: 8px; |
| 338 } | 336 } |
| 339 | 337 |
| 340 body.rtl #attribution,body.rtl #recent-tabs { | 338 body.rtl #attribution,body.rtl #recent-tabs { |
| 341 left: 8px; | 339 left: 8px; |
| 342 right: auto; | 340 right: auto; |
| 343 } | 341 } |
| OLD | NEW |