Sha256: c8159bfb0834d7e3aada7286477f172dc8eaca5c0c86cd228db0fcca14c97148

Contents?: true

Size: 850 Bytes

Versions: 17

Compression:

Stored size: 850 Bytes

Contents

// @category  base
@import "normalize";
@import "reset";
@import "h5bp";

// hybrid method for reset using both a global reset as well as some normalize features
// @mixin     base-hybrid
// @param     $exclude {List} the list of features to exclude from the reset
@mixin base-hybrid($exclude: ()) {
  $exclude: -compass-list($exclude);
  // start with a reset
  @if not index($exclude, reset) {
    @include base-reset($exclude: $exclude);
  }

  // add in some good stuff from normalize
  @if not index($exclude, normalize) {
    @include base-normalize($exclude: join(normalize-html5 normalize-page normalize-typography normalize-quotes normalize-lists normalize-embeds normalize-figures normalize-tables normalize-ime, $exclude));
  }

  // and some boilerplate
  @if not index($exclude, h5bp) {
    @include base-h5bp($exclude: $exclude);
  }
}

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
archetype-0.0.1.pre.13 stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.12 stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.11 stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.10 stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.9 stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.8 stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.7 stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.6 stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.5 stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.4 stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.3.90263a7 stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.3.6ed259b stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.3.f9dde24 stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.3.00dfd9a stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.3.83f0d7a stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.3.55c4182 stylesheets/archetype/base/_hybrid.scss
archetype-0.0.1.pre.3.811928f stylesheets/archetype/base/_hybrid.scss