ict-site/css/animations/animations.css

49 lines
855 B
CSS
Raw Permalink Normal View History

2016-10-27 20:33:41 +00:00
/*rotate 360*/
@-webkit-keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@-moz-keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@-o-keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
@keyframes warning {
0% {
border-bottom-color: rgba(0, 255, 255, 0.6);
}
25% {
border-bottom-color: rgba(255, 0, 0, 0.6);
}
80% {
border-bottom-color: rgba(0, 255, 255, 0.6)
}
100% {
border-bottom-color: rgba(0, 255, 255, 0.6)
}
}