pagination.css 620 B

12345678910111213141516171819202122232425262728293031323334
  1. .pagination {
  2. display: flex;
  3. justify-content: center;
  4. gap: 2rem;
  5. margin-bottom: 2rem;
  6. }
  7. .pagination-list {
  8. display: flex;
  9. gap: 2rem;
  10. margin: 0;
  11. padding: 0;
  12. list-style: none;
  13. }
  14. .pagination-button,
  15. .pagination-previous,
  16. .pagination-next {
  17. border: none;
  18. background: none;
  19. text-decoration: 2px solid underline;
  20. text-decoration-color: #3beccd;
  21. text-underline-offset: 3px;
  22. }
  23. .pagination-button[aria-current='page'] {
  24. background-color: #40efc5;
  25. }
  26. body.theme-dark .pagination-button:not([aria-current]),
  27. body.theme-dark .pagination-next,
  28. body.theme-dark .pagination-previous {
  29. color: #fff;
  30. }