extlink.css 424 B

12345678910111213141516171819202122
  1. span.ext {
  2. background: url(extlink_s.png) 2px center no-repeat;
  3. width: 10px;
  4. height: 10px;
  5. padding-right: 12px;
  6. text-decoration: none;
  7. }
  8. span.mailto {
  9. background: url(extlink_s.png) -20px center no-repeat;
  10. width: 10px;
  11. height: 10px;
  12. padding-right: 12px;
  13. text-decoration: none;
  14. }
  15. /* Hide the extra spans when printing. */
  16. @media print {
  17. span.ext, span.mailto {
  18. display: none;
  19. padding: 0;
  20. }
  21. }