Site du proximo, utilisé pour gérer le stock.
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.

sidenav.css 698B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* The side navigation menu */
  2. #sidenav {
  3. position: fixed;
  4. height: 100%;
  5. width: 100%;
  6. z-index: 1300;
  7. top: 0;
  8. left: 0;
  9. transition: 0.5s;
  10. text-align: center;
  11. background: #ffffff;
  12. transform: translateX(-100%);
  13. padding-top: 30px;
  14. -webkit-clip-path: circle(0% at 50% 50%);
  15. clip-path: circle(0% at 50% 50%);
  16. }
  17. .sidenav-open {
  18. transform: translateX(0%) !important;
  19. -webkit-clip-path: circle(70.7% at 50% 50%) !important;
  20. clip-path: circle(70.7% at 50% 50%) !important;
  21. }
  22. #sidenavScroll {
  23. height: 100%;
  24. width: 100%;
  25. overflow-y: auto;
  26. display: block;
  27. }
  28. #sidenavList {
  29. padding: 0;
  30. width: 300px;
  31. margin: auto;
  32. }