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 5body { 6 margin: 10px 8px; 7} 8 9.icon { 10 -webkit-margin-end: 3px; 11 -webkit-margin-start: 6px; 12} 13 14html[dir='ltr'] .icon { 15 -webkit-transform: scaleX(-1); 16 float: right; 17} 18 19html[dir='rtl'] .icon { 20 float: left; 21} 22 23.content { 24 background-color: #eee; 25 border-radius: 5px; 26 color: black; 27 margin-left: auto; 28 margin-right: auto; 29 margin-top: 66px; 30 max-width: 600px; 31 padding: 10px; 32} 33 34.extensions-message { 35 -webkit-padding-start: 39px; 36 margin-top: 15px; 37 position: relative; 38} 39 40.extension-icon { 41 content: -webkit-image-set( 42 url('../../../app/theme/default_100_percent/extensions_section.png') 1x, 43 url('../../../app/theme/default_200_percent/extensions_section.png') 2x); 44 display: inline-block; 45 left: 0; 46 margin-top: -15px; 47 position: absolute; 48 right: 0; 49 top: 50%; 50 width: 30px; 51} 52