https://github.com/glebmachine/sass-breakpoints
https://github.com/glebmachine/sass-breakpoints
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/glebmachine/sass-breakpoints
- Owner: glebmachine
- Created: 2015-09-23T21:22:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-09-23T21:32:18.000Z (over 9 years ago)
- Last Synced: 2023-03-22T12:35:35.262Z (about 2 years ago)
- Language: CSS
- Size: 203 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sass-breakpoints
Few mediaqueries, makes developers life a little bit easier# avaliable mixins
**width-lessthan($max)**.**width-morethan($min)**.
**width-between($min, $max)**.
**height-lessthan($max)**.
**height-morethan($min)**.
**height-between($min, $max)**.
# example
```sass.header
height : 60px
+height-morethan(800)
height : 80px.layout
width : 960px
margin : 0 auto+width-between(640, 1000)
width : auto
padding : 0 20px
+width-lessthan(620, 640)
width : 600px
padding : 0
margin : 0 auto
+width-lessthan(620)
width : auto
padding : 0 10px
```