style-med.less 563 B

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