Files
jubaboxweb/wwwjuba/app-assets/css/plugins/loaders/animations/ball-clip-rotate-multiple.css
T
2019-08-26 13:45:20 -04:00

129 lines
3.0 KiB
CSS

/*========================================================
DARK LAYOUT
=========================================================*/
@-webkit-keyframes rotate
{
0%
{
-webkit-transform: rotate(0deg) scale(1);
transform: rotate(0deg) scale(1);
}
50%
{
-webkit-transform: rotate(180deg) scale(.6);
transform: rotate(180deg) scale(.6);
}
100%
{
-webkit-transform: rotate(360deg) scale(1);
transform: rotate(360deg) scale(1);
}
}
@-moz-keyframes rotate
{
0%
{
-moz-transform: rotate(0deg) scale(1);
transform: rotate(0deg) scale(1);
}
50%
{
-moz-transform: rotate(180deg) scale(.6);
transform: rotate(180deg) scale(.6);
}
100%
{
-moz-transform: rotate(360deg) scale(1);
transform: rotate(360deg) scale(1);
}
}
@-o-keyframes rotate
{
0%
{
-o-transform: rotate(0deg) scale(1);
transform: rotate(0deg) scale(1);
}
50%
{
-o-transform: rotate(180deg) scale(.6);
transform: rotate(180deg) scale(.6);
}
100%
{
-o-transform: rotate(360deg) scale(1);
transform: rotate(360deg) scale(1);
}
}
@keyframes rotate
{
0%
{
-webkit-transform: rotate(0deg) scale(1);
-moz-transform: rotate(0deg) scale(1);
-o-transform: rotate(0deg) scale(1);
transform: rotate(0deg) scale(1);
}
50%
{
-webkit-transform: rotate(180deg) scale(.6);
-moz-transform: rotate(180deg) scale(.6);
-o-transform: rotate(180deg) scale(.6);
transform: rotate(180deg) scale(.6);
}
100%
{
-webkit-transform: rotate(360deg) scale(1);
-moz-transform: rotate(360deg) scale(1);
-o-transform: rotate(360deg) scale(1);
transform: rotate(360deg) scale(1);
}
}
.ball-clip-rotate-multiple
{
position: relative;
}
.ball-clip-rotate-multiple > div
{
position: absolute;
top: -20px;
left: -20px;
width: 35px;
height: 35px;
-webkit-animation: rotate 1s 0s ease-in-out infinite;
-moz-animation: rotate 1s 0s ease-in-out infinite;
-o-animation: rotate 1s 0s ease-in-out infinite;
animation: rotate 1s 0s ease-in-out infinite;
border: 2px solid #b8c2cc;
border-top-color: transparent;
border-bottom-color: transparent;
border-radius: 100%;
-webkit-animation-fill-mode: both;
-moz-animation-fill-mode: both;
-o-animation-fill-mode: both;
animation-fill-mode: both;
}
.ball-clip-rotate-multiple > div:last-child
{
top: -10px;
left: -10px;
display: inline-block;
width: 15px;
height: 15px;
-webkit-animation-duration: .5s;
-moz-animation-duration: .5s;
-o-animation-duration: .5s;
animation-duration: .5s;
animation-direction: reverse;
border-color: #b8c2cc transparent #b8c2cc transparent;
}