print.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /***********************************************************************
  2. ** print.css
  3. ** Copyright 2004 Patrick R. Michaud (pmichaud@pobox.com)
  4. ** This file is part of PmWiki; you can redistribute it and/or modify
  5. ** it under the terms of the GNU General Public License as published
  6. ** by the Free Software Foundation; either version 2 of the License, or
  7. ** (at your option) any later version. See pmwiki.php for full details.
  8. ***********************************************************************/
  9. /***********************************************************************
  10. ** These settings are part of the ?action=print skin. If you want
  11. ** to change these settings, create a new print template and set
  12. ** $PrintTemplateFmt in the config.php file to point to your new
  13. ** printing skin.
  14. ***********************************************************************/
  15. body {
  16. width:auto;
  17. background-color:white;
  18. color:black;
  19. font-family:serif;
  20. }
  21. #printhead {
  22. font-family:sans-serif;
  23. border-top:3px solid #a0a0a0;
  24. border-bottom:5px solid #a0a0a0;
  25. margin-bottom:1em;
  26. }
  27. #printhead h3 { margin-top:0px; }
  28. #printhead h1 { margin-bottom:0px; }
  29. #printtitle {
  30. }
  31. #printfoot {
  32. clear:both;
  33. margin-top:1em;
  34. border-top:5px solid #a0a0a0;
  35. font-size:smaller;
  36. }
  37. a:link { color:#444444; font-weight:bold; text-decoration:none; }
  38. a:visited { color:#444444; font-weight:bold; text-decoration:none; }
  39. a.wikilink:hover { color: #444444; text-decoration:underline; }
  40. a.createlink { color:#444444; }
  41. a.createlink:visited { color:#444444; }
  42. a.createlink:hover { color:#ff2222; }