37 lines
758 B
SCSS
37 lines
758 B
SCSS
|
|
/********************************
|
||
|
|
pagination
|
||
|
|
********************************/
|
||
|
|
|
||
|
|
.page-item {
|
||
|
|
margin: 0 4px;
|
||
|
|
.page-link {
|
||
|
|
display: block;
|
||
|
|
padding: 0;
|
||
|
|
width: 36px;
|
||
|
|
height: 36px;
|
||
|
|
line-height: 36px;
|
||
|
|
font-weight: fontweight(regular);
|
||
|
|
color: $color-dark !important;
|
||
|
|
background: $color-grey-light !important;
|
||
|
|
font-size: 18px;
|
||
|
|
text-align: center;
|
||
|
|
border: 0 !important;
|
||
|
|
@include border-radius(50% !important);
|
||
|
|
i {
|
||
|
|
font-size: 13px;
|
||
|
|
position: relative;
|
||
|
|
top: -2px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.page-item.active .page-link,
|
||
|
|
.page-link:hover {
|
||
|
|
color: $color-white !important;
|
||
|
|
background: $theme-color !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
/********************************
|
||
|
|
pagination END
|
||
|
|
********************************/
|