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