mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-10 18:32:28 +00:00
port to gitlab.
This commit is contained in:
36
themes/custom/src/css/_partial/_pagination.scss
Normal file
36
themes/custom/src/css/_partial/_pagination.scss
Normal file
@@ -0,0 +1,36 @@
|
||||
// ==============================
|
||||
// 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);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user