OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 @charset "utf-8"; | 4 @charset "utf-8"; |
5 /* Document */ | 5 /* Document */ |
6 body{font-family:'Open Sans',sans-serif;font-size:18px;line-height:1.4;} | 6 body{font-family:'Open Sans',sans-serif;font-size:18px;line-height:1.4;} |
7 /* Don't let images bleed out of viewport. */ | 7 /* Don't let images bleed out of viewport. */ |
8 img{max-width:100%;} | 8 img{max-width:100%;} |
9 /* Margin */ | 9 /* Margin */ |
10 .margin-x-narrow{width:95%;} | 10 .margin-x-narrow{width:95%;} |
11 .margin-narrow{width:85%;} | 11 .margin-narrow{width:85%;} |
12 .margin-medium{width:75%;} | 12 .margin-medium{width:75%;} |
13 .margin-wide{width:55%;} | 13 .margin-wide{width:55%;} |
14 .margin-x-wide{width:35%;} | 14 .margin-x-wide{width:35%;} |
15 /* Override html styling attributes */ | 15 /* Override html styling attributes */ |
16 table,tr,td{background-color:transparent!important;} | 16 table,tr,td{background-color:transparent!important;} |
| 17 |
| 18 .hidden{display:none} |
| 19 .visible{display:block} |
OLD | NEW |