Sha256: d77e9adeb342a92e95c9ed1bd0bdeec34a6bda0aab1f0b150664dfbcc218c763

Contents?: true

Size: 812 Bytes

Versions: 6

Compression:

Stored size: 812 Bytes

Contents

// Typography of the title displayed in grid items
$internal-links-grid-item-typography: () !default;

// Typography of the title displayed in large grid item
$internal-links-grid-hero-item-typography: () !default;

.internal_links_page {
  nav {
    .title {
      @include typography(
        $internal-links-grid-item-typography,
        (
          text-transform: uppercase,
          text-align: center,
          line-height: 1.2em,
          letter-spacing: 0.05em,
          font-size: 0.8em
        )
      );
    }

    &[data-layout="hero_top_left"],
    &[data-layout="hero_top_right"] {
      .title {
        @include typography(
          $internal-links-grid-hero-item-typography,
          (
            font-size: 1em,
            line-height: 1.4em
          )
        );
      }
    }
  }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pageflow-internal-links-1.6.0 app/assets/stylesheets/pageflow/internal_links/themes/default/grid/typography.scss
pageflow-internal-links-1.5.0 app/assets/stylesheets/pageflow/internal_links/themes/default/grid/typography.scss
pageflow-internal-links-1.4.0 app/assets/stylesheets/pageflow/internal_links/themes/default/grid/typography.scss
pageflow-internal-links-1.3.0 app/assets/stylesheets/pageflow/internal_links/themes/default/grid/typography.scss
pageflow-internal-links-1.2.0 app/assets/stylesheets/pageflow/internal_links/themes/default/grid/typography.scss
pageflow-internal-links-1.1.0 app/assets/stylesheets/pageflow/internal_links/themes/default/grid/typography.scss