Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_pagination.scss 758B

123456789101112131415161718192021222324252627282930313233343536
  1. /********************************
  2. pagination
  3. ********************************/
  4. .page-item {
  5. margin: 0 4px;
  6. .page-link {
  7. display: block;
  8. padding: 0;
  9. width: 36px;
  10. height: 36px;
  11. line-height: 36px;
  12. font-weight: fontweight(regular);
  13. color: $color-dark !important;
  14. background: $color-grey-light !important;
  15. font-size: 18px;
  16. text-align: center;
  17. border: 0 !important;
  18. @include border-radius(50% !important);
  19. i {
  20. font-size: 13px;
  21. position: relative;
  22. top: -2px;
  23. }
  24. }
  25. }
  26. .page-item.active .page-link,
  27. .page-link:hover {
  28. color: $color-white !important;
  29. background: $theme-color !important;
  30. }
  31. /********************************
  32. pagination END
  33. ********************************/