_word-rotate.scss 584 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* Word Rotate */
  2. .word-rotate {
  3. visibility: hidden;
  4. width: 100px;
  5. height: 0px;
  6. margin-bottom: -7px;
  7. display: inline-block;
  8. overflow: hidden;
  9. text-align: center;
  10. position: relative;
  11. top: -1px;
  12. &.active {
  13. visibility: visible;
  14. width: auto;
  15. }
  16. .word-rotate-items {
  17. position: relative;
  18. top: 0;
  19. width: 100%;
  20. span {
  21. display: block;
  22. white-space: nowrap;
  23. }
  24. }
  25. &.highlight {
  26. top: 1px;
  27. }
  28. }
  29. /* Word Rotate - Titles */
  30. h1 .word-rotate {
  31. margin-bottom: -12px;
  32. }
  33. h2 {
  34. .word-rotate {
  35. margin-bottom: -12px;
  36. }
  37. &.word-rotator-title {
  38. line-height: 54px;
  39. }
  40. }