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