52dc0b9c5c
Fixes #30 Fixes #35 Fixes #36 Fixes #38 Fixes #40 Fixes #43 Fixes #44 Fixes #46 Fixes #47 Fixes #49 Fixes #51 Fixes #53
28 lines
718 B
SCSS
28 lines
718 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 / 2;
|
|
margin-left: $button_small / 2;
|
|
text-decoration: none;
|
|
|
|
|
|
&:not(.current):not(.dots) {
|
|
@include button-color($color-background-alt);
|
|
outline-color: mix($color-background-alt, getTextColorFromBackground($color-background-alt), 85%);
|
|
}
|
|
|
|
&.current {
|
|
@include background-color($color-primary);
|
|
&::before {
|
|
background-color: $color-primary;
|
|
}
|
|
}
|
|
}
|
|
}
|