// =============================================================================
// SCSS/SITE/STACKS/ETHOS/_PAGINATION.SCSS
// -----------------------------------------------------------------------------
// Styling for paginating links.
// =============================================================================

// =============================================================================
// TABLE OF CONTENTS
// -----------------------------------------------------------------------------
//   01. Base Styles
// =============================================================================

// Base Styles
// =============================================================================

.pagination {
  margin: $layoutSpacing 0 0;
  height: 32px;
  text-align: center;

  ul {
    display: inline-block;
    margin: 0;
  }

  li {
    display: inline;
  }

  a,
  span {
    float: left;
    width: 32px;
    height: 32px;
    margin-left: -1px;
    @include font-size(1.3);
    font-weight: 400;
    line-height: 32px;
    text-decoration: none;
    color: $navbarBackground;
  }

  a:hover {
    color: $white;
    background-color: $navbarBackground;
  }

  a.prev,
  a.next,
  a.prev-next {
    @include break(middle-bear) {
      display: none;
    }
  }

  span.pages {
    display: none;
  }

  span.dots,
  span.current {
    color: $white;
    background-color: $navbarBackground;
  }
}