Sha256: 74115c7cef793cd710979cb45a91f0d17275355a25922214b7a437894407158a

Contents?: true

Size: 1.17 KB

Versions: 3

Compression:

Stored size: 1.17 KB

Contents

@charset "utf-8";

// Layout: Core
body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: #{$body-font-family};
  font-size: #{$base-font-size};
  font-weight: #{$base-font-weight};
  line-height: #{$base-line-height};
  margin: 0;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.clear {
  clear: both;
}

.pagination {
  padding: $spacingUnit * 0.25 0 $spacingUnit * 0.75 0;
  text-align: center;

  .paginationPages {
    clear: both;
    padding-inline-start: 0;

    li {
      list-style-type: none;
      margin: $spacingUnit * 0.25;
      display: inline-flex;

      div {
        min-width: 3em;
        font-size: 120%;
        background-color: var(--header-background-color);
        text-align: center;
        box-sizing: border-box;

        span, a {
          display: block;
          height: 100%;
          width: 100%;
          padding: $spacingUnit * 0.5 0;
          text-decoration: none;
        }
      }

      div.pageLinkActive:hover {
        background-color: rgba(127, 127, 127, 0.25);
      }
    }
  }
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
termina-plex-0.1.5.2 _sass/termina-plex/layout/core.scss
termina-plex-0.1.5 _sass/termina-plex/layout/core.scss
termina-plex-0.1.4 _sass/termina-plex/layout/core.scss