Нема описа
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031
  1. /*--------------------------------------------------------------
  2. 13. Moving Text
  3. ----------------------------------------------------------------*/
  4. .cs_moving_text_wrap.cs_style_1 {
  5. padding: 50px 0;
  6. .cs_moving_text_in {
  7. display: flex;
  8. flex-wrap: nowrap;
  9. white-space: nowrap;
  10. min-width: 100%;
  11. .cs_moving_text {
  12. animation: slide-left 30s linear infinite;
  13. }
  14. svg {
  15. margin: 0 40px;
  16. }
  17. }
  18. &:hover {
  19. .cs_moving_text {
  20. animation-play-state: paused;
  21. }
  22. }
  23. }
  24. @keyframes slide-left {
  25. 0% {
  26. transform: translateX(0);
  27. }
  28. 100% {
  29. transform: translateX(-100%);
  30. }
  31. }