sass-site/source/assets/css/styleguide/_typography.scss.erb
₍˄ุ.͡˳̫.˄ุ₎ 92f17202ec Lots of clean up.
2013-10-14 15:52:40 -04:00

19 lines
453 B
Plaintext

<% data.typography.weights.each do |font_weight| %>
.font-weight-<%= font_weight.weight %> {
font-weight: <%= font_weight.value %>;
}
<% end %>
<% data.typography.sizes.each do |font_size| %>
.font-size-<%= font_size.name %> {
@include font-size-<%= font_size.name %>;
}
<% end %>
<% data.typography.families.each do |font_family| %>
.font-family-<%= font_family.style %> {
font-family: $<%= font_family.value %>;
}
<% end %>