Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. @media print {
  2. /* Hide everything other than code. */
  3. body.page-blob .header[role=banner],
  4. body.page-blob [role=main] .pagehead.repohead,
  5. body.page-blob [role=main] .repository-content > :not(.file),
  6. body.page-blob [role=main] .repository-content > .file > .file-header > .file-actions,
  7. body.page-blob .site-footer-container {
  8. display: none;
  9. }
  10.  
  11. /* Maximize code area. */
  12. body.page-blob [role=main] .repository-content > .file {
  13. display: block;
  14. position: absolute;
  15. top: 0;
  16. right: 0;
  17. bottom: auto;
  18. left: 0;
  19. margin: 0;
  20. background: white;
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement