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.
qdouze2-wordpress-theme/scss/components/_pagination.scss

32 lines
597 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 {
background-color: var(--link-color-hover);
}
}
&.current {
@include background-color($color-primary);
background-color: $color-primary;
}
}
}