Sha256: 4dc5c327cd35d82e2fc5f58abb5412001dd70b8d235b00610c956d6abd4de013

Contents?: true

Size: 912 Bytes

Versions: 7

Compression:

Stored size: 912 Bytes

Contents

// Pagination
//
// Super lightweight (HTML-wise) blog pagination. `span`s are provide for when
// there are no more previous or next posts to show.

.pagination {
  overflow: hidden; // clearfix
  margin: $section-spacing 0;
  color: $gray-3;
  text-align: center;
  display: flex;
  width: 100%;

  > * {
    display: block;
    padding: $padding-v $padding-h;
    border: solid $border-color;
    border-width: 1px;
    flex-grow: 1;
    margin-left: -1px;

    &:first-child {
      margin-left: 0;
      border-top-left-radius:    $border-radius;
      border-bottom-left-radius: $border-radius;
    }

    &:last-child {
      border-top-right-radius:    $border-radius;
      border-bottom-right-radius: $border-radius;
    }
  }
}

/*
  Pagination items can be `span`s or `a`s but
  only provide a hover state for linked pagination items
*/
a.pagination-item:hover {
  background-color: $border-color;
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
jekyll-theme-hydeout-3.3.1 _sass/hydeout/_pagination.scss
jekyll-theme-hydeout-3.3.0 _sass/hydeout/_pagination.scss
jekyll-theme-hydeout-3.2.0 _sass/hydeout/_pagination.scss
jekyll-theme-hydeout-3.1.3 _sass/hydeout/_pagination.scss
jekyll-theme-hydeout-3.1.2 _sass/hydeout/_pagination.scss
jekyll-theme-hydeout-3.1.1 _sass/hydeout/_pagination.scss
jekyll-theme-hydeout-3.1.0 _sass/hydeout/_pagination.scss