Compass is deprecated, so this project is, too. If you've some bizarre need to use it, it ought to still work as of Compass 1.0.3. Also note this there has been an update to H5BP upstream since this release, but the Normalize code reflected here is compliant to 7.0, the current version as of Sep 2017.
This is a Compass extension of HTML5 mixins extracted from v5 of the HTML5 Boilerplate.
This gem provides only the CSS mixins and not the HTML or JavaScript templates. Implementation of these and similar files ought to be managed by the framework and language your project is built upon.
-
Install using gem:
gem install compass-h5bp
-
Or, if you're using Bundler, you can install it via
bundle install
after placing the following line in your Gemfile:gem 'compass-h5bp'
First, you must add the plugin to your config.rb
(your Compass configuration file). This can be done be placing an
import line at the top of the file and is required to add the Compass plugin to the Sass load paths:
require 'compass-h5bp'
Inside your SCSS (or Sass) file, you must import the h5bp
compass library before you can use any of the mixins:
@import "h5bp";
-
Include the h5bp mixin:
@include h5bp;
-
Optional: Redefine the mixin
h5bp-custom
to declare custom modifications to the HTML5 Boilerplate styles.
To selectively import only certain elements, observe the following order. This ensures your custom modifications to the HTML Boilerplate styles will work as expected, by following the outline provided in the upstream HTML5 Boilerplate CSS.
-
Include the mixins that make up the Normalize portion of the HTML5 Boilerplate styles. You can include all of Normalize at once:
@include h5bp-normalize;
Or pull in only the portions of Normalize you want:
@include normalize-base;
@include normalize-display;
@include normalize-links;
@include normalize-semantics;
@include normalize-embedded;
@include normalize-grouping;
@include normalize-forms;
@include normalize-tables;
-
Include the opinionated default base styles:
@include h5bp-base-styles;
-
You can include the styling for the browser upgrade warning:
@include h5bp-browserupgrade;
-
Provide styling to the 404 page (requires that you specify the class
errorpage
for the html of the 404 document):@include h5bp-errorpage;
-
Define your custom modifications to the HTML5 Boilerplate styles here.
-
Let h5bp define some semantic helper classes. (e.g.
.clearfix
):@include h5bp-helpers;
There are also specific mixins provided in
h5bp-helpers
you can call instead. -
Include h5bp's predefined print style media query:
@include h5bp-media;
If you're coming from a previous version, be aware that several mixins have had their name changed, and any mixin or feature that had been marked for deprecation has been removed. That being said, migration should be relatively simple.
The order for the "Advanced Implementation" matters. It's important to note that "custom modifications to the HTML5 Boilerplate styles" means only that - the rest of your SCSS goes below everything listed.
HTML5 Boilerplate, created by by Paul Irish and Divya Manian.
Copyright (c) 2012 Peter Gumeson. You can read a summary of the MIT license, or see LICENSE for the full license.