Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. .toggle_mnu
  2. width: 60px
  3. height: 60px
  4. float: right
  5. position: relative
  6. z-index: 100
  7. border: none
  8.  
  9.  
  10.  
  11. $w: 28px
  12. $h: 3px
  13.  
  14. .sandwich
  15. width: $w
  16. height: $w
  17. position: absolute
  18. top: 12px
  19. bottom: 0
  20. left: 0
  21. right: 0
  22. margin: auto
  23.  
  24.  
  25.  
  26.  
  27. .sw-topper
  28. position: relative
  29. top: 0
  30. width: $w
  31. height: $h
  32. background: rgb(255, 255, 255)
  33. border: none
  34. border-radius: 4px 4px 4px 4px
  35. transition: transform 0.5s, top 0.2s
  36.  
  37. /* transition-delay: 0.2s, 0s; */
  38.  
  39.  
  40.  
  41. .sw-bottom
  42. position: relative
  43. width: $w
  44. height: $h
  45. top: $h * 2.2
  46.  
  47. background: rgb(255, 255, 255)
  48. border: none
  49. border-radius: 4px 4px 4px 4px
  50. transition: transform 0.5s, top 0.2s
  51. transition-delay: 0.2s, 0
  52.  
  53. .sw-footer
  54. position: relative
  55. width: $w
  56. height: $h
  57. top: $h * 4.5
  58. background: rgb(255, 255, 255)
  59. border: none
  60. border-radius: 4px 4px 4px 4px
  61. transition: all 0.5s
  62. transition-delay: 0.1
  63.  
  64. .sandwich.active
  65. .sw-topper
  66. top: 9px
  67. transform: rotate(-45deg)
  68. .sw-bottom
  69. top: 6px
  70. transform: rotate(45deg)
  71. .sw-footer
  72. opacity: 0
  73. top: 0
  74. transform: rotate(180deg)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement