print.css 599 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. Oxygen WebHelp Plugin
  3. Copyright (c) 1998-2020 Syncro Soft SRL, Romania. All rights reserved.
  4. */
  5. @media print{
  6. /**
  7. * Hide header and footer
  8. */
  9. .nav,
  10. .navheader,
  11. .footer,
  12. .navfooter,
  13. #searchForm,
  14. .wh_search_input,
  15. .wh_header{
  16. display:none !important;
  17. }
  18. /**
  19. * Remove shadows when printing.
  20. */
  21. *{
  22. text-shadow:none !important;
  23. }
  24. body {
  25. font-size: 11.5pt;
  26. margin: auto;
  27. }
  28. .container {
  29. width:100%;
  30. }
  31. *[class^="col-"], *[class^=" col-"] {
  32. width: 100%;
  33. }
  34. }