Sha256: 517358ad397aa73957a5f27099150bc75540279ac1eec8b257aeee12f0881289
Contents?: true
Size: 1021 Bytes
Versions: 1
Compression:
Stored size: 1021 Bytes
Contents
/* Icon Font: <%= @opts[:font_name] %> */ @font-face { font-family: "<%= @opts[:font_name] %>"; src: url("<%= @data[:paths][:css_to_fonts] %>.eot"); src: url("<%= @data[:paths][:css_to_fonts] %>.eot?#iefix") format("embedded-opentype"), url("<%= @data[:paths][:css_to_fonts] %>.woff") format("woff"), url("<%= @data[:paths][:css_to_fonts] %>.ttf") format("truetype"), url("<%= @data[:paths][:css_to_fonts] %>.svg#<%= @opts[:font_name] %>") format("svg"); font-weight: normal; font-style: normal; } <%= @data[:glyphs].map {|name| ".#{@opts[:css_prefix] + name}:before"}.join(",\n") %> { font-family: "<%= @opts[:font_name] %>"; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; -webkit-font-smoothing: antialiased; display: inline-block; text-decoration: inherit; } <% @data[:glyphs].each_with_index do |name, index| %> .<%= @opts[:css_prefix] + name %>:before { content: "\<%= (61696+index).to_s(16) %>"; }<% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fontcustom-1.1.0.pre | lib/fontcustom/templates/fontcustom.css |