2.0.0 • Published 9 years ago

stylecow-plugin-custom-media v2.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

stylecow plugin custom-media

Build Status

Stylecow plugin to work with the @custom-media at-rule, available in CSS Media Queries Level 4.

You write:

@custom-media --small-viewport (max-width: 30em);
 
@media (--small-viewport) {
	body {
		color: blue;
	}
}

And stylecow converts to:

@media (max-width: 30em) {
	body {
		color: blue;
	}
}

More demos in the tests folder

2.0.0

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago