Live data from Hacker News

Icono – Pure CSS icons with only one element

saeedalipoor.github.io

1–10 of 22 posts

Re: Icono – Pure CSS icons with only one element

#3
Impressive.

While I appreciate the effort and the fact that is is more of an experiment than a production-ready package, it does seem like an odd choice to go with fixed-size pixels instead of something relative, like ems or percentages.

Regardless, well done. Don't let my typical-to-HN negative tone take away from the accomplishment of this.

Re: Icono – Pure CSS icons with only one element

#8
post #2

That's really smart - However, it seems impossible to use multiple sizes in a single document, which make it impractical over other alternatives such as Ionicons, Icomoon or FontAwesome. Still a nice showcase, congrats!

> it seems impossible to use multiple sizes in a single document

How so? It's possible in most cases to stick an extra class on the icon, say `.2x` and add a rule to your css such as —

    [class*="2x"] {
       transform: scale(2)
    }
Post reply on HN