Sha256: 391e15d075990f8c1daada9136c1a211f002843b07ed674d3f504ae642622904

Contents?: true

Size: 1.02 KB

Versions: 1

Compression:

Stored size: 1.02 KB

Contents

// ==========================================================================
// Sections
// ==========================================================================
section {
  margin-bottom: $space;

  &.section-lg {
    margin-bottom: $space*1.5;
  }

  &.section-xl {
    margin-bottom: $space*2;
  }

  &:after {
      content: "";
      display: table;
      clear: both;
  }
}

.section {
  // Purple Gradient
  &-purple {
    @include grad-purple();
  }

  // Dark Purple Gradient
  &-purple-dark {
    @include grad-purple-dark();
  }

  // Light gray to white
  &-gray-light {
    @include grad-gray-light();
  }

  //- Type changes
  &-purple,
  &-purple-dark {
    h1, h2, h3, h4, h5, h6, p {
      color: $white;
    }

    h6 {
      color: fade-out($white, .15);
    }

    p, ul, ol {
      color: fade-out($white, .25);


      a {
        color: $blue-light;
        font-weight: bold;

        &:hover {
          color: $white;
        }
      }
    }

    blockquote {
      border-color: fade-out($white, .6);
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
shibori-1.9.0 source/css/shibori/scss/page-elements/_sections.scss