Sha256: d5e14dc6f81c2b809bb47c6be8ccaccfe34cd56ecfcf999f1d4a5b2b9677f434

Contents?: true

Size: 875 Bytes

Versions: 6

Compression:

Stored size: 875 Bytes

Contents

// --------------------------------------------------------------------------------
// Navbar and linked headings' correction.
//
// By default, when you access page headings from the page table of content
// (toc) links, the heading is hidden behind the navbar.  This workaround fixes
// the linked headings visibility issue in the page.
// --------------------------------------------------------------------------------

main {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    &::before {
      display: block;
      height: 6rem;
      margin-top: -6rem;
      visibility: hidden;
      content: "";
    }
    margin-top: 3rem;
  }
  .bg-image {
    @extend .bg-dark, .py-3;
    background: url(../img/centos-motif.png) right center / cover;
  }
  .bg-light-radial-gradient {
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 250, 0) 100%);
  }
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
jekyll-theme-centos-2.3.0.beta.67 _sass/centos/_headings.scss
jekyll-theme-centos-2.3.0.beta.66 _sass/centos/_headings.scss
jekyll-theme-centos-2.3.0.beta.65 _sass/centos/_headings.scss
jekyll-theme-centos-2.3.0.beta.64 _sass/centos/_headings.scss
jekyll-theme-centos-2.3.0.beta.63 _sass/centos/_headings.scss
jekyll-theme-centos-2.3.0.beta.62 _sass/centos/_headings.scss