Fork-Awesome/build/assets/font-awesome/less/icons.less

16 lines
371 B
Plaintext
Raw Normal View History

---
---
2013-05-07 23:57:23 +02:00
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
{% for icon in icons %}
.icon-{{ icon.id }}:before {
content: @{{ icon.id }};
}
{% for alias in icon.aliases %}
// {{ icon.name }} alias
.icon-{{ alias }}:before {
content: @{{ icon.id }};
}
{% endfor %}
{% endfor %}