print.scss 979 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* ========================================================================
  2. Component: print
  3. ========================================================================== */
  4. // Put here all rules required to style the print view
  5. @media print {
  6. .sidebar,
  7. .topnavbar,
  8. .offsidebar,
  9. .btn {
  10. display: none !important;
  11. width: 0 !important;
  12. height: 0 !important;
  13. }
  14. .wrapper,
  15. .wrapper .section-container,
  16. .content-wrapper {
  17. margin: 0 !important;
  18. /* remove margin used for sidebar and expand the content */
  19. padding: 0 !important;
  20. width: 100% !important;
  21. border: 0; /* optional: remove top border used to separate the page heading */
  22. }
  23. .content-wrapper {
  24. overflow: hidden !important;
  25. }
  26. /* hide sidebar container */
  27. .aside-container { display: none !important; }
  28. /* remove space used for the sidebar */
  29. .footer-container { margin: 0 !important; }
  30. }