mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 01:47:44 +01:00
19 lines
453 B
Plaintext
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 %>
|