diff options
author | Tommy Chen <tommy351@gmail.com> | 2012-06-06 06:59:54 +0200 |
---|---|---|
committer | Tommy Chen <tommy351@gmail.com> | 2012-06-06 06:59:54 +0200 |
commit | ea7ba27c605c2ba93ed661715f1bc272abc661b7 (patch) | |
tree | 2f6240d786386ababc577f3dea813994cba5acbd /sass/parts/_index.scss | |
parent | e2028885ae03fc758b318550d01d6e87f5e17ccf (diff) | |
download | octopress-theme-jeyzu-ea7ba27c605c2ba93ed661715f1bc272abc661b7.zip octopress-theme-jeyzu-ea7ba27c605c2ba93ed661715f1bc272abc661b7.tar.gz |
replace icons with icon font
Diffstat (limited to 'sass/parts/_index.scss')
-rw-r--r-- | sass/parts/_index.scss | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/sass/parts/_index.scss b/sass/parts/_index.scss index f833fb9..833bf02 100644 --- a/sass/parts/_index.scss +++ b/sass/parts/_index.scss @@ -13,14 +13,24 @@ position: absolute; } .prev{ - background: image-url('back.png') 0 center no-repeat; padding-left: 30px; left: 0; + &:before{ + content: "\f060"; + font: 1.3em $font-icon; + position: absolute; + left: 0; + } } .next{ - background: image-url('more.png') right center no-repeat; padding-right: 30px; right: 0; + &:before{ + content: "\f061"; + font: 1.3em $font-icon; + position: absolute; + right: 0; + } } .center{ text-align: center; |