shaka-player
Version:
DASH/EME video player library
43 lines (38 loc) • 962 B
CSS
/**
* Copyright 2015 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
body {
margin: 0;
}
video {
position: absolute;
width: 100%;
height: 100%;
background-color: #000;
}
#bufferingSpinner {
margin: auto;
z-index: 1;
width: 50px;
height: 50px;
background-size: 50px;
background-image: url('assets/controls/buffering.gif');
display: none;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}