mirror of
https://github.com/FortAwesome/Font-Awesome.git
synced 2025-01-10 07:10:28 +08:00
8 lines
369 B
Plaintext
8 lines
369 B
Plaintext
---
|
|
---
|
|
/* 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 %}{% for alias in icon.aliases %}
|
|
.{{ site.fontawesome.css_prefix }}-{{ alias }}:before,{% endfor %}
|
|
.{{ site.fontawesome.css_prefix }}-{{ icon.id }}:before { content: @{{ icon.id }}; }{% endfor %}
|