2016-04-28 12:55:41 -05:00
|
|
|
.embed-responsive {
|
|
|
|
height: 100%;
|
|
|
|
}
|
2016-04-29 07:18:14 -05:00
|
|
|
|
|
|
|
#video-loading {
|
|
|
|
margin-top: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Thanks https://gist.github.com/alexandrevicenzi/680147013e902a4eaa5d
|
|
|
|
.glyphicon-refresh-animate {
|
|
|
|
-animation: spin .7s infinite linear;
|
|
|
|
-ms-animation: spin .7s infinite linear;
|
|
|
|
-webkit-animation: spinw .7s infinite linear;
|
|
|
|
-moz-animation: spinm .7s infinite linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
from { transform: scale(1) rotate(0deg);}
|
|
|
|
to { transform: scale(1) rotate(360deg);}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes spinw {
|
|
|
|
from { -webkit-transform: rotate(0deg);}
|
|
|
|
to { -webkit-transform: rotate(360deg);}
|
|
|
|
}
|
|
|
|
|
|
|
|
@-moz-keyframes spinm {
|
|
|
|
from { -moz-transform: rotate(0deg);}
|
|
|
|
to { -moz-transform: rotate(360deg);}
|
|
|
|
}
|