Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 527 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 527 Bytes

#BP Load Build Status

a responsive breakpoint loader - WIP

view demo here: http://davidpett.github.io/bp-load/

Will only load the CSS file when it is needed, breaks apart the SASS files into the correct CSS output, requires all SASS to be written using mixins, example:

  @include bp('base') {
    background-color: #ff0000;
  }
}```

The 'base.css' file will have ```.foo {
  background-color: #ffcc00;
}```