Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/davidpett/bp-load

a responsive breakpoint loader
https://github.com/davidpett/bp-load

Last synced: about 2 months ago
JSON representation

a responsive breakpoint loader

Awesome Lists containing this project

README

        

#BP Load [![Build Status](https://travis-ci.org/davidpett/bp-load.svg?branch=master)](https://travis-ci.org/davidpett/bp-load)

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:
```.foo {
@include bp('base') {
background-color: #ff0000;
}
}```

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