You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

36 lines
618 B

// ==============================
// Pagination
// ==============================
.pagination {
margin: $pagination-margin;
@include clearfix;
.prev,
.next {
font-weight: 600;
font-size: $pagination-font-size;
font-family: $global-serif-font-family;
transition-property: transform;
transition-timing-function: ease-out;
transition-duration: 0.3s;
}
.prev {
float: left;
&:hover {
color: $theme-color;
transform: translateX(-4px);
}
}
.next {
float: right;
&:hover {
color: $theme-color;
transform: translateX(4px);
}
}
}