Sha256: 6469af3ceb03ed6e6296a11063ecf879a3c2fefb338ea55235a0d5dde0c53fb5

Contents?: true

Size: 1.92 KB

Versions: 3

Compression:

Stored size: 1.92 KB

Contents

/*
 * Font Custom: Bootstrap CSS
 */

@font-face {
  font-family: "<%= @opts[:font_name] %>";
  src: url("<%= @data[:file_name] %>.eot");
  src: url("<%= @data[:file_name] %>.eot?#iefix") format("embedded-opentype"),
       url("<%= @data[:file_name] %>.woff") format("woff"),
       url("<%= @data[:file_name] %>.ttf") format("truetype"),
       url("<%= @data[:file_name] %>.svg#<%= @opts[:font_name] %>") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="<%= @opts[:css_prefix] %>"]:before, [class*=" <%= @opts[:css_prefix] %>"]:before {
  font-family: "<%= @opts[:font_name] %>";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-decoration: inherit;
}

a [class^="<%= @opts[:css_prefix] %>"], a [class*=" <%= @opts[:css_prefix] %>"] {
  display: inline-block;
  text-decoration: inherit;
}

.<%= @opts[:css_prefix] %>large:before {
  vertical-align: top;
  font-size: 1.333em;
}

.btn [class^="<%= @opts[:css_prefix] %>"], .btn [class*=" <%= @opts[:css_prefix] %>"] {
  line-height: 0.9em;
}

li [class^="<%= @opts[:css_prefix] %>"], li [class*=" <%= @opts[:css_prefix] %>"] {
  display: inline-block;
  width: 1.25em;
  text-align: center;
}

li .<%= @opts[:css_prefix] %>large[class^="<%= @opts[:css_prefix] %>"], li .<%= @opts[:css_prefix] %>large[class*=" <%= @opts[:css_prefix] %>"] {
  width: 1.875em;
}

li[class^="<%= @opts[:css_prefix] %>"], li[class*=" <%= @opts[:css_prefix] %>"] {
  margin-left: 0;
  list-style-type: none;
}

li[class^="<%= @opts[:css_prefix] %>"]:before, li[class*=" <%= @opts[:css_prefix] %>"]:before {
  text-indent: -2em;
  text-align: center;
}

li[class^="<%= @opts[:css_prefix] %>"].<%= @opts[:css_prefix] %>large:before, li[class*=" <%= @opts[:css_prefix] %>"].<%= @opts[:css_prefix] %>large:before {
  text-indent: -1.333em;
}
<% @data[:glyphs].each_with_index do |name, index| %>
.<%= @opts[:css_prefix] + name %>:before { content: "\<%= (61696+index).to_s(16) %>"; }<% end %>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fontcustom-1.0.1 lib/fontcustom/templates/fontcustom-bootstrap.css
fontcustom-1.0.0 lib/fontcustom/templates/fontcustom-bootstrap.css
fontcustom-1.0.0.pre2 lib/fontcustom/templates/fontcustom-bootstrap.css