File: /home/f/r/e/frenchy/www/french-american.org/current/node_modules/gulp-svg-sprites/tmpl/sprite.css
.<%=common %> {
font-size: <%= baseSize %>px;
}
.<%=common %>:before {
content:' ';
vertical-align:middle;
display: inline-block;
background-image: url("<%=svgPath%>");
background-repeat: no-repeat;
background-size: <%= relWidth %>em <%= relHeight %>em;
}
.no-svg .<%=common %>:before {
background-image: url("<%=pngPath%>");
}
<% _.forEach(svg, function(svgItem) { %>
.<%=common %>.<%=svgItem.name%>:before {
background-position: <%= svgItem.relPositionX %>em <%= svgItem.relPositionY %>em;
width: <%= svgItem.relWidth %>em;
height: <%= svgItem.relHeight %>em;
}
<% }); %>