<%= glyphs.map(function(glyph){ return className + ' ' + '.icon-' + glyph.name + ':before' }).join(',\n') %> {
/* use !important to prevent issues with browser extensions that change fonts */
    font-family: "<%= className %>" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

/* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

<% _.each(glyphs, function(glyph) { %><%= className %> .icon-<%= glyph.name %>:before { content: "\<%= glyph.unicode[0].charCodeAt(0).toString(16).toUpperCase() %>" }
<% }); %>