Last Updated: February 25, 2016
·
408
· jeromegn

Don't set font stuff on the universal (*) css selector

* {
  font-family: "Helvetica Neue", helvetica, arial, sans-serif;
}

This will make it very hard to override the font somewhere else. Even if you override it for a section, all its descendants will inherit from that universal selector.

Put it on body instead.