Sin descripción
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.

_offcanvas-menu-toggler.scss 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /********************************
  2. offcanvas toggler btn
  3. ********************************/
  4. .mobile-menu-toggle {
  5. svg {
  6. width: 50px;
  7. position: relative;
  8. @include min-screen(576) {
  9. top: -8px;
  10. }
  11. path {
  12. transition: stroke-dashoffset 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25),
  13. stroke-dasharray 0.5s cubic-bezier(0.25, -0.25, 0.75, 1.25);
  14. fill: none;
  15. stroke-dashoffset: 0;
  16. stroke-linecap: round;
  17. stroke-width: 30px;
  18. &#top,
  19. &#bottom {
  20. stroke-dasharray: 240px 950px;
  21. }
  22. &#middle {
  23. stroke-dasharray: 240px 240px;
  24. }
  25. }
  26. }
  27. & .close {
  28. svg {
  29. path {
  30. &#top,
  31. &#bottom {
  32. stroke-dasharray: -650px;
  33. stroke-dashoffset: -650px;
  34. }
  35. &#middle {
  36. stroke-dasharray: 1px 220px;
  37. stroke-dashoffset: -115px;
  38. }
  39. }
  40. }
  41. }
  42. // theme1
  43. &.theme1 {
  44. svg {
  45. path {
  46. stroke: $color-dark;
  47. }
  48. }
  49. }
  50. }
  51. /********************************
  52. offcanvas toggler btn END
  53. ********************************/