Guest User

Untitled

a guest
Nov 18th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <a class="mobileMenu" href="#">
  2. <div class="menuIconWrap">
  3. <div class="hmbrg">
  4.  
  5. </div>
  6.  
  7. </div>
  8. </a>
  9.  
  10. .menuIconWrap .hmbrg{
  11. position: relative;
  12. width: 30px;
  13. height: 3px;
  14. background: #12939a;
  15. }
  16. .menuIconWrap .hmbrg:after, .menuIconWrap .hmbrg:before{
  17. position: absolute;
  18. content: "";
  19. top: 0;
  20. left: 0;
  21. width: 30px;
  22. height: 3px;
  23. background: #12929a;
  24. transition: margin .3s ease .3s, transform .3s ease .3s;
  25. }
  26. .clicked.hmbrg{
  27.  
  28. }
  29. .clicked.hmbrg:after, .clicked.hmbrg:before{
  30. margin-top: 0;
  31. transform: rotate(90deg);
  32. transition: margin .3s ease 0s, transform .3s ease .3s;
  33. }
  34. .menuIconWrap .hmbrg:after{
  35. margin-top: 7px;
  36. }
  37. .menuIconWrap .hmbrg:before{
  38. margin-top: -7px;
  39. }
  40. .cross{
  41. transform: rotate(45deg);
  42. transition: all .3s ease .4s !important;
  43. }
Add Comment
Please, Sign In to add comment