style-med.css 534 B

1234567891011121314151617181920212223242526272829303132333435
  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 #main-header #menu-button {
  15. cursor: pointer;
  16. display: inline-block;
  17. max-height: 100%;
  18. }
  19. #buttons button {
  20. width: 60px;
  21. height: 60px;
  22. }
  23. .backdrop {
  24. display: initial;
  25. }
  26. .row > .col {
  27. width: 100%;
  28. float: left;
  29. }
  30. .row.col-lg-1 > .col,
  31. .row.col-lg-2 > .col,
  32. .row.col-lg-3 > .col,
  33. .row.col-lg-4 > .col {
  34. width: 100%;
  35. }