Skip to content

cssrecipes/custom-media-queries

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

custom-media-queries

Some custom media queries shortcuts

Install

$ npm install cssrecipes-custom-media-queries

Usage

@import "./node_modules/cssrecipes-custom-media-queries/index.css";

/* for desktop first approch */
@media (--r-maxS) {
  /* rules here will be active when viewport will be <= "s" size */
}

/* for mobile first approch */
@media (--r-minS) {
  /* rules here will be active when viewport will be > "s" size */
}

Available custom media queries

--r-maxS <= 30em

--r-minS > 30em

--r-maxM <= 50em

--r-minM > 50em

--r-maxL <= 65em

--r-minL > 65em

--r-maxXL <= 80em

--r-minXL > 80em

Note: your can obviously override the default values of this custom media. Just define the new values after the import.


Testing

To generate a build:

$ npm run build

To generate the testing build.

$ npm run build-test

Basic visual tests are in test/index.html.

Contributing

Work on a branch, install dev-dependencies, respect coding style & run tests before submitting a bug fix or a feature.

$ git clone https://github.com/cssrecipes/custom-media-queries.git
$ git checkout -b patch-1
$ npm install
$ npm test