| 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 body { | 5 a { |
| 6 margin: 10px 8px; | 6 color: rgb(51, 103, 214); |
| 7 } | 7 } |
| 8 | |
| 9 .icon { | |
| 10 -webkit-margin-end: 3px; | |
| 11 -webkit-margin-start: 6px; | |
| 12 } | |
| 13 | |
| 14 html[dir='ltr'] .icon { | |
| 15 float: right; | |
| 16 } | |
| 17 | |
| 18 html[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 } | |
| OLD | NEW |