Created
February 19, 2018 22:13
-
-
Save yjose/a4e7f14249f731fdf1f8aeb269bb696c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.burger-menu, | |
.burger-menu.open { | |
display: inline-block; | |
cursor: pointer; | |
position: fixed; | |
right: 20px; | |
bottom: 40px; | |
z-index: 9999; | |
background: #fff; | |
padding: 10px; | |
border-radius: 25px; | |
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); | |
} | |
.burger-menu .bar1, | |
.bar2, | |
.bar3 { | |
width: 25px; | |
height: 3px; | |
background-color: #333; | |
margin: 4px 0; | |
transition: 0.4s; | |
} | |
.burger-menu.open .bar1 { | |
-webkit-transform: rotate(-45deg) translate(-4px, 4px); | |
transform: rotate(-45deg) translate(-4px, 4px); | |
} | |
.burger-menu.open .bar2 { | |
opacity: 0; | |
} | |
.burger-menu.open .bar3 { | |
-webkit-transform: rotate(45deg) translate(-6px, -6px); | |
transform: rotate(45deg) translate(-6px, -6px); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment