icons.less 371 B

123456789101112131415
  1. ---
  2. ---
  3. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  4. readers do not read off random characters that represent icons */
  5. {% for icon in icons %}
  6. .icon-{{ icon.id }}:before {
  7. content: @{{ icon.id }};
  8. }
  9. {% for alias in icon.aliases %}
  10. // {{ icon.name }} alias
  11. .icon-{{ alias }}:before {
  12. content: @{{ icon.id }};
  13. }
  14. {% endfor %}
  15. {% endfor %}