| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 body { | 5 body { |
| 6 -webkit-user-select: none; | 6 -webkit-user-select: none; |
| 7 background: black; | 7 background: black; |
| 8 font-family: Noto Sans UI,Droid Sans Fallback,sans-serif; | 8 font-family: Noto Sans UI,sans-serif; |
| 9 font-size: 84%; | 9 font-size: 84%; |
| 10 margin: 0; | 10 margin: 0; |
| 11 overflow: hidden; | 11 overflow: hidden; |
| 12 } | 12 } |
| 13 | 13 |
| 14 #video-player { | 14 #video-player { |
| 15 height: 100%; | 15 height: 100%; |
| 16 left: 0; | 16 left: 0; |
| 17 position: absolute; | 17 position: absolute; |
| 18 top: 0; | 18 top: 0; |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 color: white; | 174 color: white; |
| 175 display: -webkit-box; | 175 display: -webkit-box; |
| 176 height: 54px; | 176 height: 54px; |
| 177 padding-left: 70px; | 177 padding-left: 70px; |
| 178 padding-right: 35px; | 178 padding-right: 35px; |
| 179 } | 179 } |
| 180 | 180 |
| 181 #error:not([visible]) { | 181 #error:not([visible]) { |
| 182 display: none; | 182 display: none; |
| 183 } | 183 } |
| OLD | NEW |