diff options
author | Tommy Chen <tommy351@gmail.com> | 2012-06-06 05:51:27 +0200 |
---|---|---|
committer | Tommy Chen <tommy351@gmail.com> | 2012-06-06 05:51:27 +0200 |
commit | 24d2187f8141a8abbd05e41cc7f113fac5751b6a (patch) | |
tree | 23e4253f890708f5116d95949b0a6d7e734a2507 /sass | |
parent | 3a71857545377a08099f89a719bc2420b5ddf85b (diff) | |
download | octopress-theme-jeyzu-24d2187f8141a8abbd05e41cc7f113fac5751b6a.zip octopress-theme-jeyzu-24d2187f8141a8abbd05e41cc7f113fac5751b6a.tar.gz |
add icon font
Diffstat (limited to 'sass')
-rw-r--r-- | sass/base/_font.scss | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/sass/base/_font.scss b/sass/base/_font.scss index ac8b2ae..907e406 100644 --- a/sass/base/_font.scss +++ b/sass/base/_font.scss @@ -1,2 +1,17 @@ $font-default: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif; -$font-mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace;
\ No newline at end of file +$font-mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace; + +$font-icon: FontAwesome; +$font-icon-path: "/font/fontawesome-webfont"; + +@font-face { + font-family: 'FontAwesome'; + src: url('#{$font-icon-path}.eot'); + src: url('#{$font-icon-path}.eot?#iefix') format('embedded-opentype'), + url('#{$font-icon-path}.woff') format('woff'), + url('#{$font-icon-path}.ttf') format('truetype'), + url('#{$font-icon-path}.svgz#FontAwesomeRegular') format('svg'), + url('#{$font-icon-path}.svg#FontAwesomeRegular') format('svg'); + font-weight: normal; + font-style: normal; +}
\ No newline at end of file |