Advertisement
Artur_Hopf

Untitled

Oct 9th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.21 KB | None | 0 0
  1. @keyframes my_select_rot {
  2.   0% {
  3.     transform: rotate(0deg);
  4.   }
  5.   100% {
  6.     transform: rotate(360deg);
  7.   }
  8. }
  9. .my_select_loader{
  10.     animation: 1s linear 0s normal none infinite running my_select_rot;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement