71 lines
2.0 KiB
CSS
Executable File
71 lines
2.0 KiB
CSS
Executable File
/* Фиксируем пагинацию */
|
|
.pagination ul {
|
|
display: flex !important;
|
|
align-items: center !important;
|
|
justify-content: center !important;
|
|
list-style: none !important;
|
|
margin: 0 !important;
|
|
padding: 0 !important;
|
|
gap: 1rem !important;
|
|
}
|
|
|
|
/* Убираем рамки со всех кнопок пагинации */
|
|
.pagination a,
|
|
.pagination .previous,
|
|
.pagination .next,
|
|
.pagination .first,
|
|
.pagination .last {
|
|
border: none !important;
|
|
border-radius: 0 !important;
|
|
box-shadow: none !important;
|
|
outline: none !important;
|
|
}
|
|
|
|
/* Информация о страницах для десктопа */
|
|
.pagination .page-info {
|
|
display: inline-flex !important;
|
|
align-items: center !important;
|
|
justify-content: center !important;
|
|
padding: 0.4rem 0.8rem !important;
|
|
font-size: 0.8rem !important;
|
|
color: #333 !important;
|
|
background: none !important;
|
|
border: none !important;
|
|
border-radius: 0 !important;
|
|
text-align: center !important;
|
|
font-weight: 300 !important;
|
|
white-space: nowrap !important;
|
|
min-width: 60px !important;
|
|
box-sizing: border-box !important;
|
|
flex-shrink: 0 !important;
|
|
box-shadow: none !important;
|
|
outline: none !important;
|
|
}
|
|
|
|
.pagination .page-info .current-page {
|
|
color: #333 !important;
|
|
font-weight: 400 !important;
|
|
font-size: 1em !important;
|
|
}
|
|
|
|
.pagination .page-info .separator {
|
|
margin: 0 0.3rem !important;
|
|
color: #666 !important;
|
|
font-size: 0.9em !important;
|
|
font-weight: 300 !important;
|
|
}
|
|
|
|
.pagination .page-info .total-pages {
|
|
color: #333 !important;
|
|
font-weight: 300 !important;
|
|
}
|
|
|
|
/* Скрываем информацию о страницах на мобильных */
|
|
@media (max-width: 768px) {
|
|
.pagination .page-info,
|
|
.pagination .page-info.desktop-only,
|
|
.pagination-info,
|
|
.pagination-status {
|
|
display: none !important;
|
|
}
|
|
} |