wikiprintable.css 945 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* MediaWiki print stylesheet */
  2. body {
  3. color: #000000; background: #ffffff;
  4. }
  5. /* MSIE/Win doesn't understand 'inherit' */
  6. a, a.external, a.new, a.stub {
  7. color: black ! important;
  8. text-decoration: none ! important;
  9. }
  10. #article {
  11. margin: 0 ! important;
  12. }
  13. /* Continue ... */
  14. a, a.external, a.new, a.stub {
  15. color: inherit ! important;
  16. text-decoration: inherit ! important;
  17. }
  18. /* Hide ugly UI stuff */
  19. #quickbar, #topbar, #logo, #footer, #siteNotice,
  20. .editsection, .toctoggle {
  21. display: none;
  22. }
  23. /* */
  24. #article {
  25. position: relative;
  26. margin: inherit ! important;
  27. }
  28. .printfooter {
  29. border-top: solid 1px black;
  30. display: block ! important;
  31. }
  32. /* Old stuff, fixme:
  33. a.CBlink { color: #0000AA; text-decoration: none; font-size: 12pt; }
  34. a.interwiki, a.external { color: #3333BB; text-decoration: none; }
  35. h1.pagetitle { padding-bottom: 0; margin-bottom: 0; }
  36. i.link, u.link { color: #000066; }
  37. p.subtitle { padding-top: 0; margin-top: 0; }
  38. */