Guest User

Untitled

a guest
Dec 10th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1.  
  2. html {
  3. background:linear-gradient(#aaa,#eee);
  4. background-repeat:no-repeat;
  5. background-size:cover;
  6. min-height:100%;
  7. }
  8.  
  9. .busy {
  10. display: block;
  11. width: 13px;
  12. height: 13px;
  13. margin:-10px;
  14. padding:0;
  15. position:absolute;
  16. top:50%;
  17. left:50%;
  18. border: 3px solid;
  19. border-top-color: transparent;
  20. border-left-color: transparent;
  21. border-radius: 50%;
  22. color:#397CE9;
  23. background-color: transparent;
  24. animation: load 0s linear infinite;
  25. }
  26.  
  27. @keyframes load {
  28. 100% { transform: rotate(360deg); }
  29. }
  30.  
  31. .wrapper {
  32. line-height:40px;
  33. width:400px;
  34. height:300px;
  35. top:50%;
  36. left:50%;
  37. margin:-150px 00px;
  38. display:block;
  39. position:absolute;
  40. background:white;
  41. }
Add Comment
Please, Sign In to add comment