Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. .loading-icon {
  2. width: 32px;
  3. height: 32px;
  4. background: url('../images/350.png') no-repeat;
  5. display: block;
  6. background-size: cover;
  7. text-indent: -999em;
  8. overflow: hidden;
  9. -webkit-animation:spin 1s linear infinite;
  10. -moz-animation:spin 1s linear infinite;
  11. animation:spin 1s linear infinite;
  12. }
  13. @-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
  14. @-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
  15. @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement