Sha256: b18e2a075f3f3df9699d6ca4d32bcb9c0dfe121e67fbad2aaf27f4e5fc0a68b6

Contents?: true

Size: 1.06 KB

Versions: 1

Compression:

Stored size: 1.06 KB

Contents

//
// Styles for rendered markdown in the .main-content container
//
// stylelint-disable selector-no-type, max-nesting-depth, selector-max-compound-selectors

.page-content {
  ul,
  ol,
  dl {
    padding-left: 1.5em;
  }

  ol {
    list-style-type: none;
    counter-reset: step-counter;

    li {
      position: relative;

      &::before {
        position: absolute;
        top: 0.2em;
        left: -1.5em;
        color: $grey-dk-000;
        content: counter(step-counter);
        counter-increment: step-counter;
        @include fs-3;

        @include mq(sm) {
          top: 0.11em;
        }
      }

      ol {
        counter-reset: sub-counter;

        li {
          &::before {
            content: counter(sub-counter, lower-alpha);
            counter-increment: sub-counter;
          }
        }
      }
    }
  }

  ul {
    list-style: none;

    li {
      &::before {
        position: absolute;
        margin-left: -1.5em;
        color: $grey-dk-000;
        content: "•";
      }
    }
  }

  hr + *,
  h1:first-of-type {
    margin-top: 0;
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
just-the-docs-0.1.0 _sass/content.scss