Guest User

Untitled

a guest
Feb 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. background: #2f3640;
  5. }
  6. .container {
  7. position: absolute;
  8. top: 50%;
  9. left: 50%;
  10. transform: translate (-50%, -50%);
  11. }
  12. .ripple {
  13. position: fixed;
  14. top: 0;
  15. transform: translateX(-50%);
  16. width: 20px;
  17. height: 20px;
  18. border-radius: 50%;
  19. animation: ripple 4% linear infinite;
  20. }
  21. .r2 {
  22. animation-delay: 0.8;
  23. }
  24. .r3 {
  25. animation-delay: 1.6;
  26. }
  27. .r4 {
  28. animation-delay: 2.4;
  29. }
  30. .r5 {
  31. animation-delay: 3.2;
  32. }
  33. .r6 {
  34. animation-delay: 4.0;
  35. }
  36. @keyframes ripple {
  37. from {
  38. border: 4px solid #c23616;
  39. background: #e84118;
  40. }
  41. to {
  42. border: 0px solid #c23616;
  43. background: #e84118;
  44. width: 400px;
  45. height: 400px;
  46. opacity: 0;
  47. }
  48. }
Add Comment
Please, Sign In to add comment