26 lines
571 B
SCSS
26 lines
571 B
SCSS
|
nav.pagination {
|
||
|
padding-bottom:$lineheight;
|
||
|
.nav-links {
|
||
|
text-align: center;
|
||
|
width:100%;
|
||
|
}
|
||
|
.page-numbers, .next, .prev {
|
||
|
@include button($button_small);
|
||
|
padding-left: $button_small;
|
||
|
padding-right: $button_small;
|
||
|
margin-right : $button_small / 8;
|
||
|
margin-left: $button_small / 8;
|
||
|
|
||
|
&:not(.current) {
|
||
|
@include button-color($color-background-alt);
|
||
|
}
|
||
|
|
||
|
&.current {
|
||
|
@include background-color($color-info);
|
||
|
&:hover {
|
||
|
@include background-color($color-info);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|