Chromium Code Reviews| 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 { |
| 7 /* Don't let images or video bleed out of viewport. */ | 7 font-family: 'Open Sans',sans-serif; |
| 8 img,video{max-width:100%;} | 8 font-size: 10pt; |
| 9 line-height: 1.4; | |
| 10 /* background-color and color are set in | |
| 11 * reader_mode_preferences::ReplaceCSSTemplateValues().*/ | |
| 12 $1 | |
|
nyquist
2014/06/24 23:08:49
This probably has to be rebased.
smaslo
2014/06/26 20:05:37
Done.
| |
| 13 } | |
| 14 /* Don't let images bleed out of viewport. */ | |
| 15 img { | |
| 16 height: auto; | |
| 17 max-width: 100%; | |
| 18 } | |
| 9 /* Margin */ | 19 /* Margin */ |
| 10 .margin-x-narrow{width:95%;} | 20 .margin-x-narrow { |
| 11 .margin-narrow{width:85%;} | 21 width: 95%; |
| 12 .margin-medium{width:75%;} | 22 } |
| 13 .margin-wide{width:55%;} | 23 .margin-narrow { |
| 14 .margin-x-wide{width:35%;} | 24 width: 85%; |
| 25 } | |
| 26 .margin-medium { | |
| 27 width: 75%; | |
| 28 } | |
| 29 .margin-wide { | |
| 30 width: 55%; | |
| 31 } | |
| 32 .margin-x-wide { | |
| 33 width: 35%; | |
| 34 } | |
| 15 /* Override html styling attributes */ | 35 /* Override html styling attributes */ |
| 16 table,tr,td{background-color:transparent!important;} | 36 table, |
| 17 | 37 td, |
| 18 .hidden{display:none} | 38 tr { |
| 19 .visible{display:block} | 39 background-color: transparent !important; |
| 40 } | |
| 41 .hidden { | |
| 42 display: none; | |
| 43 } | |
| 44 .visible { | |
| 45 display: block; | |
| 46 } | |
| OLD | NEW |