/*************************************************|
| The breakpoint mixin, this will probably suit   |
| your needs, but feel free to hack it if it      |
| doesn't                                         |
*************************************************/

@mixin bp($point) {

  @media (min-width: $point) {
    @content;
  }

}

@mixin bp-max($point) {

  @media (max-width: $point) {
    @content;
  }

}