123456789101112131415161718192021222324252627282930313233343536 |
- /********************************
- 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
- ********************************/
|