| 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 | 4 |
| 5 .content > span { | 5 .content { |
| 6 max-width: 416px; | 6 background-color: #323232; |
| 7 color: white; |
| 7 } | 8 } |
| 8 | 9 |
| 9 .icon { | 10 .icon { |
| 10 -webkit-margin-start: 25px; | 11 content: url(../../../../ui/webui/resources/images/incognito_splash.svg); |
| 11 content: -webkit-image-set( | 12 display: inline-block; |
| 12 url(../../../../ui/webui/resources/images/incognito_icon.png) 1x, | 13 height: 120px; |
| 13 url(../../../../ui/webui/resources/images/2x/incognito_icon.png) 2x); | 14 width: 120px; |
| 14 float: right; | |
| 15 height: 128px; | |
| 16 margin-bottom: 10px; | |
| 17 margin-top: 4px; | |
| 18 width: 128px; | |
| 19 } | 15 } |
| 20 | 16 |
| 21 html[dir='rtl'] .icon { | 17 h1 { |
| 22 float: left; | 18 margin-top: 1em; |
| 23 } | 19 } |
| 24 | 20 |
| 25 @media (max-width:400px) { | 21 a { |
| 26 .icon { | 22 color: rgb(3, 169, 244); |
| 27 -webkit-margin-start: 15px; | |
| 28 height: 96px; | |
| 29 width: 96px; | |
| 30 } | |
| 31 } | 23 } |
| OLD | NEW |