diff options
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; |