superlatief-mediaqueries
Version:
A set of mediaqueries for Sass, Stylus & Less
15 lines (11 loc) • 312 B
text/stylus
$screen ?= 'only screen';
// Base Mixin
bp($min, $mq = max-width, $type = $screen)
if $type != '' and $type != null
$type = $type + ' and';
if typeof($min) is string
$query = '%s' % unquote($min);
else
$query = '%s (%s: %s)' % (unquote($type) unquote($mq) $min);
@media $query
{block}