blob: 6bbdb06e06fe7a9bef9ae7e2d21d23f85517a4d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// ==============================
// Pagination
// ==============================
.pagination {
margin: $pagination-margin;
@include clearfix;
.prev,
.next {
font-weight: 600;
font-size: $pagination-font-size;
font-family: $global-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);
}
}
}
|