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  float: right;
16}
17
18html[dir='rtl'] .icon {
19  float: left;
20}
21
22.content {
23  background-color: #eee;
24  border-radius: 5px;
25  color: black;
26  margin-left: auto;
27  margin-right: auto;
28  margin-top: 66px;
29  max-width: 600px;
30  padding: 10px;
31}
32