stylecow-plugin-media-queries

1.0.0 • Public • Published

stylecow plugin media-queries

Build Status

Stylecow plugin to add support for some syntax of Media Queries Level 4

You write:

@media (width < 500px) {
	body {
		color: blue;
	}
}
@media (500px <= width <= 800px) {
	body {
		color: red;
	}
}

And stylecow converts to:

@media (max-width: 499.999px) {
	body {
		color: blue;
	}
}
@media (min-width: 500px) and (max-width: 800px) {
	body {
		color: red;
	}
}

More demos in the tests folder

Readme

Keywords

none

Package Sidebar

Install

npm i stylecow-plugin-media-queries

Weekly Downloads

1

Version

1.0.0

License

MIT

Last publish

Collaborators

  • oscarotero