Chromium Code Reviews| 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 html, | 5 html, |
| 6 body, | 6 body, |
| 7 #container { | 7 #container { |
| 8 margin: 0; | 8 margin: 0; |
| 9 padding: 0; | 9 padding: 0; |
| 10 width: 100%; | 10 width: 100%; |
| 11 height: 100%; | 11 height: 100%; |
| 12 font-family:Arial; | |
|
mcasas
2014/10/14 13:44:12
Please make the whole font smaller. It doesn't fit
burnik
2014/10/15 13:45:57
Done.
| |
| 12 } | 13 } |
| 13 | 14 |
| 14 table { | 15 table { |
| 15 font-family: sans-serif; | 16 font-family: sans-serif; |
| 16 -webkit-font-smoothing: antialiased; | 17 -webkit-font-smoothing: antialiased; |
| 17 font-size: 115%; | 18 font-size: 115%; |
| 18 width: auto; | 19 width: auto; |
| 19 overflow: auto; | 20 overflow: auto; |
| 20 display: block; | 21 display: block; |
| 21 } | 22 } |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 107 left: 25%; | 108 left: 25%; |
| 108 top: 25%; | 109 top: 25%; |
| 109 } | 110 } |
| 110 | 111 |
| 111 .hiddenClipboard { | 112 .hiddenClipboard { |
| 112 display: none; | 113 display: none; |
| 113 } | 114 } |
| 114 | 115 |
| 115 .timestamp { | 116 .timestamp { |
| 116 min-width: 115px; | 117 min-width: 115px; |
| 117 } | 118 } |
| OLD | NEW |