Welcome to mirror list, hosted at ThFree Co, Russian Federation.

icons.less « less « font-awesome « assets « build - github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 679c836ae6378d7a6566bfcf06800dce52153114 (plain)
1
2
3
4
5
6
7
8
9
10
---
---
/* 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 %}
.icon-{{ alias }}:before,
{% endfor %}
.icon-{{ icon.id }}:before { content: @{{ icon.id }}; }
{% endfor %}