Advertisement
Guest User

Untitled

a guest
Dec 7th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. html, body {
  2. height: 100%;
  3. display: flex;
  4. align-items: center;
  5. justify-content: center;
  6. }
  7. .spinner {
  8. width: 2em;
  9. height: 2em;
  10. border-radius: 1.25em;
  11. border: 0.25em solid rgba(0, 0, 0, 0);
  12. border-top: 0.25em solid rgba(0, 0, 0, 0.7);
  13. border-right: 0.25em solid rgba(0, 0, 0, 0.7);
  14. animation: spinnerRotate 1s linear infinite;
  15. }
  16. @keyframes spinnerRotate{
  17. from { transform:rotate(0deg); }
  18. to { transform:rotate(360deg); }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement