mq-sass is a Sass library to help you manage your responsive breakpoints and easily generate media queries.
- Sass 3.3+
- SCSS syntax
npm install mq-sass
yarn get mq-sass
bower install css-mq-sass
Also available as a Ruby gem to use within your Rails application—see below for more information.
Or to manually install it, download and unzip the source files, then copy the files from the stylesheets/mq-sass
directory into your project.
- Import the
_mq-sass.scss
file into your project.
@import "mq-sass";
If you're using gulp, Grunt, Compass, or alike, include mq-sass:
// gulp-sass gulpfile.js
.pipe(sass({
includePaths: ['node_modules/mq-sass/stylesheets']
}))
// grunt-sass Gruntfile.js
options: {
includePaths: ['node_modules/mq-sass/stylesheets']
},
# Compass config.rb
add_import_path "node_modules/mq-sass/stylesheets"
- Add mq-sass to your Gemfile.
gem 'mq-sass'
- Run
bundle install
. - Include mq-sass by using Sass’s native
@import
*
// application.scss
@import "mq-sass";
* More information on why Sass’s native @import
+ why you should ditch Sprockets directives altogether.
$mq-breakpoints: (
iphone : 320px,
iphone6 : 375px,
iphone6p: 414px,
small : 480px,
medium : 640px,
ipad : 768px,
large : 1024px,
);
$mq-ems : false;
$mq-em-base: 16px;
$mq-only: "only screen";
@include mq($breakpoint, $minmax, $widthheight) { // $minmax and $widthheight are optional
// Sass goes here
}
- The first parameter,
$breakpoint
, accepts pre-defined values from the$mq-breakpoints();
map, which is set by default as above in Settings.
Example:
@include mq(small) {
color: white;
}
/* Resulting CSS */
@media only screen and (min-width: 480px) {
color: white;
}
You can also customize your own breakpoints.
$mq-breakpoints: (
s : 600px,
m : 800px,
l : 1000px,
xl: 1200px,
);
@include mq(xl) {
color: blue;
}
$breakpoint
also accepts other pre-defined values:
- portrait
- landscape
- retina
Example:
@include mq(portrait) {
color: white;
}
@include mq(retina) {
color: red;
}
/* Resulting CSS */
@media only screen and (orientation: portrait) {
color: white;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 2dppx) {
color: red;
}
$breakpoint
accepts custom values in px.
Example:
@include mq(700px) {
color: white;
}
/* Resulting CSS */
@media only screen and (min-width: 700px) {
color: white;
}
Note: You can also use unitless pixel values: @include mq(700) {}
By default, media queries are mobile first (min-width
).
$minmax
accepts values min
or max
, which will result in min-width:
or max-width:
respectively. If left blank, it falls back to the default, min
.
Example:
@include mq(ipad) {
color: white;
}
@include mq(600px, max) {
color: cyan;
}
/* Resulting CSS */
@media only screen and (min-width: 768px) {
color: white;
}
@media only screen and (max-width: 600px) {
color: cyan;
}
By default, media queries that are generated are (min/max-width
).
$widthheight
accepts values width
or height
, which results in min/max-width:
or min/max-height:
respectively. If left blank, it falls back to the default, width
.
Example:
@include mq(small, min, height) {
color: cyan;
}
@include mq(600px, max, height) {
color: pink;
}
/* Resulting CSS */
@media only screen and (min-height: 480px) {
color: cyan;
}
@media only screen and (max-height: 600px) {
color: pink;
}
To have media queries in ems, set $mq-ems: true;
. The default em base is 16px
. You can change it by setting $mq-em-base
to the pixel value of your choosing.
Examples:
$mq-ems: true;
@include mq(600px) {
color: white;
}
/* Resulting CSS */
@media only screen and (min-width: 37.5em) {
color: white;
}
$mq-ems : true;
$mq-em-base: 20px;
@include mq(600px) {
color: cyan;
}
/* Resulting CSS */
@media only screen and (min-width: 30em) {
color: cyan;
}
By default the media is specified for only screen
. For some reason if you'd like to change it or remove it completely, you can do so by changing the setting $mq-media
:
$mq-media: "screen";
/* Resulting CSS */
@media screen and (min-width...) {}
$mq-media: ""; // or false
/* Resulting CSS */
@media (min-width...) {}
Returns the value of the breakpoint in pixels (by default) or ems.
.example {
max-width: mq-get(small);
}
$breakpoint
accepts only pre-defined keys from the $mq-breakpoints();
map.
$mq-breakpoints: (
small : 480px,
medium: 640px,
);
.example {
max-width: mq-get(small);
}
.example2 {
max-width: mq-get(medium);
}
/* Resulting CSS */
.example {
max-width: 480px;
}
.example2 {
max-width: 640px;
}
$ems
is a boolean (false
or true
, false
by default) and dictates whether or not the return is in pixels or ems.
.example {
max-width: mq-get(small);
}
.example-ems {
max-width: mq-get(small, true);
}
/* Resulting CSS */
.example {
max-width: 480px;
}
.example2 {
max-width: 30em;
}
The MIT License
Copyright © 2014–2016 Jonathan Suh (@jonsuh)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.