wikiprintable.css 939 B

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