You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
519 B

  1. @media print {
  2. #header-container,
  3. #alerts,
  4. .sidebar,
  5. .footer {
  6. display: none;
  7. }
  8. #root {
  9. padding-top: 0;
  10. padding-bottom: 0;
  11. }
  12. body, main, .hero {
  13. background: #FFF;
  14. border: none;
  15. }
  16. .mkcontent {
  17. color: mc('grey', '900');
  18. h1, h2, h3 {
  19. background: #FFF;
  20. }
  21. .toc-anchor {
  22. display: none;
  23. }
  24. pre {
  25. background-color: #FFF;
  26. border-left: none;
  27. padding-left: 20px;
  28. > code {
  29. color: mc('grey', '800');
  30. }
  31. }
  32. }
  33. }