style-med.css 557 B

123456789101112131415161718192021222324252627282930313233343536
  1. body {
  2. display: initial;
  3. }
  4. #menu {
  5. left: 0;
  6. position: fixed;
  7. height: 100%;
  8. box-shadow: -10px 0px 5px 10px #212121;
  9. transition: all ease-in-out 0.4s;
  10. }
  11. #menu.ng-hide {
  12. left: -280px;
  13. }
  14. #main .header #menu-button {
  15. cursor: pointer;
  16. display: inline-block;
  17. max-height: 100%;
  18. }
  19. #buttons-left button,
  20. #buttons-right button {
  21. width: 60px;
  22. height: 60px;
  23. }
  24. .backdrop {
  25. display: initial;
  26. }
  27. .row > .col {
  28. width: 100%;
  29. float: left;
  30. }
  31. .row.col-lg-1 > .col,
  32. .row.col-lg-2 > .col,
  33. .row.col-lg-3 > .col,
  34. .row.col-lg-4 > .col {
  35. width: 100%;
  36. }