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,sans-serif; | |
9 font-size: 84%; | 8 font-size: 84%; |
10 margin: 0; | 9 margin: 0; |
11 overflow: hidden; | 10 overflow: hidden; |
12 } | 11 } |
13 | 12 |
14 #video-player { | 13 #video-player { |
15 height: 100%; | 14 height: 100%; |
16 left: 0; | 15 left: 0; |
17 position: absolute; | 16 position: absolute; |
18 top: 0; | 17 top: 0; |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 color: white; | 168 color: white; |
170 display: -webkit-box; | 169 display: -webkit-box; |
171 height: 54px; | 170 height: 54px; |
172 padding-left: 70px; | 171 padding-left: 70px; |
173 padding-right: 35px; | 172 padding-right: 35px; |
174 } | 173 } |
175 | 174 |
176 #error:not([visible]) { | 175 #error:not([visible]) { |
177 display: none; | 176 display: none; |
178 } | 177 } |
OLD | NEW |