Sha256: 226ae4f28356f40b55db63ac4425200d0f007a17ab144218f61bb50cb5c157cc

Contents?: true

Size: 766 Bytes

Versions: 2

Compression:

Stored size: 766 Bytes

Contents

// Table of content
// 
// Table of content is included in default.html

.toc {
  font-family: $font-family-base;
  font-size: 0.9rem;
  color: $text-muted;
  margin-bottom: 2rem;

  // Side navigation on larger pages
  @include media-breakpoint-up(lg) {
    position: sticky;
    top: 2rem;
    right: 0;
    overflow-y: auto;
    max-height: calc(100vh - 2rem); // Allow scroll within toc
  }

  h6 {
    border-bottom: 1px solid $text-muted;
    padding-bottom: 0.5rem;
  }

  a {
    color: $text-muted;
    text-decoration: none;

    &:hover {
      text-decoration: underline;
    }
  }

  ul {
    list-style: none;
    padding-left: 0;

    li {
      margin-bottom: 0.25rem;
    }

    ul {
      margin-top: 0.25rem;
      padding-left: 1rem;
    }
  }
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jekyll-theme-petridish-3.1.0 _sass/_toc.scss
jekyll-theme-petridish-3.0 _sass/_toc.scss