2013-06-30 00:07:09 +02:00
|
|
|
@import "prefixer";
|
2013-07-26 17:38:51 +02:00
|
|
|
@import "Bootstrap/variables";
|
2013-06-30 00:07:09 +02:00
|
|
|
|
|
|
|
@colorDark : @grayDark;
|
|
|
|
@colorLight : @grayLighter;
|
|
|
|
|
|
|
|
#followingBalls {
|
|
|
|
position : relative;
|
|
|
|
height : 20px;
|
|
|
|
width : 256px;
|
|
|
|
margin : 50px auto;
|
|
|
|
display : block;
|
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
.ball {
|
2013-06-30 00:07:09 +02:00
|
|
|
background-color : @colorDark;
|
2013-06-30 09:47:02 +02:00
|
|
|
position : absolute;
|
|
|
|
top : 0;
|
|
|
|
left : 0;
|
|
|
|
width : 20px;
|
|
|
|
height : 20px;
|
|
|
|
.border-radius(10px);
|
|
|
|
.animation-name(bounce);
|
|
|
|
.animation-duration(1.9s);
|
|
|
|
.animation-iteration-count(infinite);
|
|
|
|
.animation-direction(linear);
|
2013-06-30 00:07:09 +02:00
|
|
|
}
|
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
#ball-1 {
|
|
|
|
.animation-delay(0s);
|
2013-06-30 00:07:09 +02:00
|
|
|
}
|
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
#ball-2 {
|
|
|
|
.animation-delay(0.19s);
|
2013-06-30 00:07:09 +02:00
|
|
|
}
|
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
#ball-3 {
|
|
|
|
.animation-delay(0.38s);
|
2013-06-30 00:07:09 +02:00
|
|
|
}
|
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
#ball-4 {
|
|
|
|
.animation-delay(0.57s);
|
2013-06-30 00:07:09 +02:00
|
|
|
}
|
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
@keyframes bounce {
|
|
|
|
0% {
|
|
|
|
left : 0px;
|
|
|
|
background-color : @colorDark;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
left : 236px;
|
|
|
|
background-color : @colorLight;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
left : 0px;
|
|
|
|
background-color : @colorDark;
|
|
|
|
}
|
2013-06-30 00:07:09 +02:00
|
|
|
}
|
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
@-moz-keyframes bounce {
|
|
|
|
0% {
|
|
|
|
left : 0px;
|
|
|
|
background-color : @colorDark;
|
|
|
|
}
|
2013-06-30 00:07:09 +02:00
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
50% {
|
|
|
|
left : 236px;
|
|
|
|
background-color : @colorLight;
|
|
|
|
}
|
2013-06-30 00:07:09 +02:00
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
100% {
|
|
|
|
left : 0px;
|
|
|
|
background-color : @colorDark;
|
|
|
|
}
|
2013-06-30 00:07:09 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
@-webkit-keyframes bounce {
|
|
|
|
0% {
|
|
|
|
left : 0px;
|
|
|
|
background-color : @colorDark;
|
|
|
|
}
|
2013-06-30 00:07:09 +02:00
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
50% {
|
|
|
|
left : 236px;
|
|
|
|
background-color : @colorLight;
|
|
|
|
}
|
2013-06-30 00:07:09 +02:00
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
100% {
|
|
|
|
left : 0px;
|
|
|
|
background-color : @colorDark;
|
|
|
|
}
|
2013-06-30 00:07:09 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
@-ms-keyframes bounce {
|
|
|
|
0% {
|
|
|
|
left : 0px;
|
|
|
|
background-color : @colorDark;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
left : 236px;
|
|
|
|
background-color : @colorLight;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
left : 0px;
|
|
|
|
background-color : @colorDark;
|
|
|
|
}
|
2013-06-30 00:07:09 +02:00
|
|
|
}
|
|
|
|
|
2013-06-30 09:47:02 +02:00
|
|
|
@-o-keyframes bounce {
|
|
|
|
0% {
|
|
|
|
left : 0px;
|
|
|
|
background-color : @colorDark;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
left : 236px;
|
|
|
|
background-color : @colorLight;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
left : 0px;
|
|
|
|
background-color : @colorDark;
|
|
|
|
}
|
2013-06-30 00:07:09 +02:00
|
|
|
}
|
|
|
|
}
|