Skip to content

Instantly share code, notes, and snippets.

View adrianhurt's full-sized avatar

Adrian Hurtado adrianhurt

View GitHub Profile
@adrianhurt
adrianhurt / 1.media-mixins-bootstrap3.less
Last active December 4, 2015 01:23
Less Media mixins for Bootstrap 3
////////////////////////////////////////////////////////
// Mixins
.media(@width, @rules) {
@media (min-width: @width) { @rules(); }
}
.media(@width, @name, @value) {
.media(@width, { @{name}: @value; });
}
.media-xs(@rules) { .media(@screen-xs-min, @rules); }