• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3 * found in the LICENSE file. */
4
5.content > span {
6  max-width: 416px;
7}
8
9.icon {
10  -webkit-margin-after: 10px;
11  -webkit-margin-before: 4px;
12  -webkit-margin-start: 25px;
13  content: -webkit-image-set(
14      url('../../../browser/resources/ntp4/images/incognito_icon.png') 1x,
15      url('../../../browser/resources/ntp4/images/2x/incognito_icon.png') 2x);
16  float: right;
17  height: 128px;
18  width: 128px;
19}
20
21html[dir='rtl'] .icon {
22  float: left;
23}
24
25@media (max-width:400px) {
26  .icon {
27    -webkit-margin-start: 15px;
28    height: 96px;
29    width: 96px;
30  }
31}
32