This repository has been archived on 2024-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
kspace-wordpress-theme/scss/components/_pagination.scss

31 lines
695 B
SCSS

nav.pagination {
padding-bottom:$lineheight;
.nav-links {
text-align: center;
width:100%;
}
.page-numbers, .next, .prev {
@include shape-style($button_small);
padding: $button_small/2 $button_small;
margin : $button_small / 2;
text-decoration: none;
&:not(.current):not(.dots) {
outline-color: var(--accent-color);
color: var(--link-color);
&:hover {
&::before {
background-color: var(--link-color-hover);
}
}
}
&.current {
@include background-color($color-primary);
&::before {
background-color: $color-primary;
}
}
}
}