| OLD | NEW |
| 1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 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 | 5 |
| 6 html, | 6 @font-face { |
| 7 body { | 7 font-family: 'Roboto2'; |
| 8 font-weight: 400; |
| 9 src: local('Roboto'), local('Roboto2-Regular'), |
| 10 url(../../../ui/webui/resources/roboto.woff2") format('woff2'), |
| 11 url(../../../ui/webui/resources/roboto.woff") format('woff'); |
| 12 } |
| 13 |
| 14 html, body { |
| 8 width: 100%; | 15 width: 100%; |
| 9 height: 100%; | 16 height: 100%; |
| 10 margin: 0; | 17 margin: 0; |
| 11 padding: 0; | 18 padding: 0; |
| 12 overflow: hidden; | 19 overflow: hidden; |
| 20 font-family: 'Roboto2', sans-serif; |
| 13 } | 21 } |
| 14 | 22 |
| 15 canvas { | 23 #logs { |
| 16 width: 100%; | 24 width: 40%; |
| 17 height: 100%; | 25 border-left: 1px solid rgba(0,0,0,0.12); |
| 18 margin: 0; | |
| 19 } | 26 } |
| OLD | NEW |