Sha256: 6cf9b94f240156f1cae17c8da37488cef2b06a0b85a753a55b328f16bec1be8f

Contents?: true

Size: 716 Bytes

Versions: 1

Compression:

Stored size: 716 Bytes

Contents

.pager {
  width: 100%;
  display: flex;
  background-color: $color-card-background;
  box-shadow: $shadow-md;
  border-radius: 10px;
  overflow: hidden;
  list-style: none;
  margin-top: 36px;

  &__item {
    flex: 1 1 0;
    max-width: 20%;
    color: $color-card-text;
    text-align: center;
    transition: background-color 0.2s;

    &:not(.disabled):hover {
      background-color: $color-selected-card-background;
    }

    &.selected {
      color: $color-card-accent-text;
      background-color: $color-selected-card-background;
    }

    &.disabled {
      cursor: default;
    }
  }

  &__link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    padding: 16px 0px;
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-twail-1.0.0 _sass/components/_pager.scss