In this repo i store all my websites, each in a different branch
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.

67 lines
1.2 KiB

  1. /*----------------------------------*/
  2. /* Push Sidebar Menu Css ---*/
  3. /*----------------------------------*/
  4. .pushmenu { /*this is the nav*/
  5. background: #323232;
  6. font-family: Arial, Helvetics, sans-serif;
  7. width: 270px;
  8. height: 100%;
  9. top: 0;
  10. z-index: 1000;
  11. position: fixed;
  12. }
  13. .pushmenu-push {
  14. overflow-x: hidden;
  15. position: relative;
  16. }
  17. /*==================================*/
  18. /* Left Sidebar Menu Css --------*/
  19. /*==================================*/
  20. .pushmenu-right {
  21. right: -270px;
  22. }
  23. .pushmenu-right.pushmenu-open {
  24. right: 0;
  25. }
  26. .pushmenu-push-left {
  27. left:0;
  28. }
  29. .pushmenu-push-toleft {
  30. left: -270px;
  31. }
  32. /*Transition*/
  33. .pushmenu, .pushmenu-push {
  34. -webkit-transition: all 0.3s ease;
  35. -moz-transition: all 0.3s ease;
  36. transition: all 0.3s ease;
  37. -o-transition: all 0.3s ease;
  38. }
  39. /*==================================*/
  40. /* Left Sidebar Menu Css --------*/
  41. /*==================================*/
  42. .pushmenu-left {
  43. left: -270px;
  44. }
  45. .pushmenu-left.pushmenu-open {
  46. left: 0;
  47. }
  48. .pushmenu-push-right {
  49. right:0;
  50. }
  51. .pushmenu-push-toright {
  52. right: -270px;
  53. }