Guest User

Untitled

a guest
Jul 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. nav {
  2. width: 300px;
  3. position: absolute;
  4. /* This trasform moves the drawer off canvas. */
  5. -webkit-transform: translate(-300px, 0);
  6. transform: translate(-300px, 0);
  7. /* Optionally, we animate the drawer. */
  8. transition: transform 0.3s ease;
  9. }
  10. nav.open {
  11. -webkit-transform: translate(0, 0);
  12. transform: translate(0, 0);
  13. }
Add Comment
Please, Sign In to add comment