Mixin using Foundation 6's great breakpoint mixin, which uses the breakpoint maps.
The following will compile down to medium, and also the global portrait.
@include tm-breakpoint(medium, portrait) {
color: red;
}
The following will compile down to landscape, and also medium portrait.
@include tm-breakpoint(landscape, 'medium+portrait') {
color: blue;
}