main.css 488 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. html {
  2. height: 100%;
  3. }
  4. html body .container-fluid.body-content {
  5. width: 100%;
  6. overflow-y: auto;
  7. margin-top: 20px;
  8. }
  9. header {
  10. background-color: #286090;
  11. min-height: 60px;
  12. width: 100%;
  13. }
  14. footer {
  15. background-color: #4C4;
  16. min-height: 30px;
  17. width: 100%;
  18. }
  19. .cursorPointer {
  20. cursor: pointer;
  21. }
  22. .remove-button {
  23. color: #c50909;
  24. padding-left: 27px;
  25. }
  26. .edit-button {
  27. color: #035C04;
  28. padding-left: 27px;
  29. }
  30. .noneDisplay {
  31. display: none;
  32. }