extlink.css 426 B

1234567891011121314151617181920212223
  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,
  18. span.mailto {
  19. display: none;
  20. padding: 0;
  21. }
  22. }