Files
shaka-player/receiver.css
T
Natalie Harris 5eb9310d3a Chromecast demo. Issue #117.
Change-Id: Iae1f129d9f02ff47f09d9aacd60fb9a80ff8459c
2015-10-21 16:55:40 +00:00

43 lines
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;
}