TimPietrusky / weloveiconfonts

This is like Google Web Fonts, but for Open Source Icon Fonts. Hurray!
https://weloveiconfonts.com
653 stars 99 forks source link

fix pseudo-elements syntax #66

Closed marcobiedermann closed 1 year ago

marcobiedermann commented 8 years ago

Pseudo elements should be written with double colon instead of single colon:

selector::pseudo-element {
  property: value;
}

The double colon replaced the single-colon notation for pseudo-elements in CSS3. This was an attempt from W3C to distinguish between pseudo-classes and pseudo-elements

Also removed some trailing whitespace automatically ;)