streaming-vjs.css (860B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
.video-container * {
overflow: hidden;
animation: none !important;
-moz-animation: none !important; /* Firefox */
-webkit-animation: none !important; /* Safari and Chrome */
-o-animation: none !important; /* Opera */
}
#videoemboddy {
margin-top: 2.5%;
max-width: 66%;
animation: none;
-moz-animation: none; /* Firefox */
-webkit-animation: none; /* Safari and Chrome */
-o-animation: none; /* Opera */
}
#vid1{
position: relative !important;
width: 100% !important;
padding-bottom: 56.25%;
margin-bottom: -32%;
}
.embedvid {
padding-top: 56.25%; /* for 16:9 aspect-ratio -> (9/16)*100 */
margin-right: 0.6%;
margin-bottom: 6%;
position: relative;
}
.embedvid iframe {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 99%;
border: 0;
}
|