Fork-Awesome/src/doc/assets/fork-awesome/scss/path.scss.txt
todd 6a5ed1863d Renamed .scss files so they are handled properly by Jekyll
Jekyll was ignoring all of the files in src/doc/assets/fork-awesome/scss
that began with an underscore when copying to _site.

Removed the underscore and appended `.txt` so they would be copied to
_site

We put the underscore back and remove the .txt extension in the Makefile
2019-02-25 05:28:41 -05:00

16 lines
790 B
Plaintext

/* FONT PATH
* -------------------------- */
@font-face {
font-family: '#{$fa-font-family}';
src: url('#{$fa-font-path}/forkawesome-webfont.eot?v=#{$fa-version}');
src: url('#{$fa-font-path}/forkawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'),
url('#{$fa-font-path}/forkawesome-webfont.woff2?v=#{$fa-version}') format('woff2'),
url('#{$fa-font-path}/forkawesome-webfont.woff?v=#{$fa-version}') format('woff'),
url('#{$fa-font-path}/forkawesome-webfont.ttf?v=#{$fa-version}') format('truetype'),
url('#{$fa-font-path}/forkawesome-webfont.svg?v=#{$fa-version}#forkawesomeregular') format('svg');
// src: url('#{$fa-font-path}/ForkAwesome.otf') format('opentype'); // used when developing fonts
font-weight: normal;
font-style: normal;
}