diff options
Diffstat (limited to 'sass/parts/_index.scss')
-rw-r--r-- | sass/parts/_index.scss | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/sass/parts/_index.scss b/sass/parts/_index.scss index e20323b..833bf02 100644 --- a/sass/parts/_index.scss +++ b/sass/parts/_index.scss @@ -13,18 +13,31 @@ 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; width: 100%; display: block; + @media screen and (max-width: 400px){ + display: none; + } } }
\ No newline at end of file |