You are here

extlink.css in External Links 8

Same filename and directory in other branches
  1. 5 extlink.css
  2. 6 extlink.css

External links css file.

File

extlink.css
View source
  1. /**
  2. * @file
  3. * External links css file.
  4. */
  5. svg.ext {
  6. width: 14px;
  7. height: 14px;
  8. padding-right: 0.2em;
  9. fill: #727272;
  10. font-weight: 900;
  11. }
  12. svg.mailto {
  13. width: 14px;
  14. height: 14px;
  15. padding-right: 0.2em;
  16. fill: #727272;
  17. }
  18. svg.ext path,
  19. svg.mailto path {
  20. stroke: #727272;
  21. stroke-width: 3;
  22. }
  23. /* Hide the extra icons when printing. */
  24. @media print {
  25. svg.ext,
  26. svg.mailto {
  27. display: none;
  28. padding: 0;
  29. }
  30. }
  31. /* Put some whitespace between the link and its Font Awesome suffix. */
  32. extlink i {
  33. padding-left: 0.2em;
  34. }