line-scale-pulse-out.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*========================================================
  2. DARK LAYOUT
  3. =========================================================*/
  4. @-webkit-keyframes line-scale-pulse-out {
  5. 0% {
  6. transform: scaley(1);
  7. }
  8. 50% {
  9. transform: scaley(0.4);
  10. }
  11. 100% {
  12. transform: scaley(1);
  13. }
  14. }
  15. @keyframes line-scale-pulse-out {
  16. 0% {
  17. transform: scaley(1);
  18. }
  19. 50% {
  20. transform: scaley(0.4);
  21. }
  22. 100% {
  23. transform: scaley(1);
  24. }
  25. }
  26. .line-scale-pulse-out > div {
  27. background-color: #b8c2cc;
  28. width: 4px;
  29. height: 3.45rem;
  30. border-radius: 2px;
  31. margin: 2px;
  32. -webkit-animation-fill-mode: both;
  33. animation-fill-mode: both;
  34. display: inline-block;
  35. -webkit-animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  36. animation: line-scale-pulse-out 0.9s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  37. }
  38. .line-scale-pulse-out > div:nth-child(2),
  39. .line-scale-pulse-out > div:nth-child(4) {
  40. -webkit-animation-delay: -0.4s !important;
  41. animation-delay: -0.4s !important;
  42. }
  43. .line-scale-pulse-out > div:nth-child(1),
  44. .line-scale-pulse-out > div:nth-child(5) {
  45. -webkit-animation-delay: -0.2s !important;
  46. animation-delay: -0.2s !important;
  47. }