2012-06-03 11:40:57 +00:00
|
|
|
#pagenavi{
|
|
|
|
padding: 20px 0;
|
|
|
|
height: 20px;
|
|
|
|
line-height: 20px;
|
|
|
|
position: relative;
|
|
|
|
@include border-shadow();
|
|
|
|
a{
|
|
|
|
&:hover{
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.prev, .next{
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
.prev{
|
|
|
|
padding-left: 30px;
|
|
|
|
left: 0;
|
2013-02-10 14:50:28 +00:00
|
|
|
&:before{
|
|
|
|
content: "\f060";
|
|
|
|
font: 1.3em $font-icon;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
}
|
2012-06-03 11:40:57 +00:00
|
|
|
}
|
|
|
|
.next{
|
|
|
|
padding-right: 30px;
|
|
|
|
right: 0;
|
2013-02-10 14:50:28 +00:00
|
|
|
&:before{
|
|
|
|
content: "\f061";
|
|
|
|
font: 1.3em $font-icon;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
}
|
2012-06-03 11:40:57 +00:00
|
|
|
}
|
|
|
|
.center{
|
|
|
|
text-align: center;
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
2013-02-10 14:50:28 +00:00
|
|
|
@media screen and (max-width: 400px){
|
|
|
|
display: none;
|
|
|
|
}
|
2012-06-03 11:40:57 +00:00
|
|
|
}
|
|
|
|
}
|