Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/davidpett/bp-load
- Owner: davidpett
- Created: 2014-03-19T20:36:25.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-10T20:28:45.000Z (over 9 years ago)
- Last Synced: 2024-10-24T18:52:31.491Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 436 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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;
}```