/**
 *   Add device specific rules here
 *
 */

@mixin desktopClient{
  @media screen and (min-width: 1024px){
    @content;
  }
}

@mixin iPodWebappPortrait{
  @media screen and (max-height: 460px){
    @content;
  }
}

@mixin iPodSafariPortrait{
  @media screen and (max-height: 356px){
    @content;
  }
}

@mixin iPodSafariLandscapeFullscrren{
  @media screen and (max-height: 320px){
    @content;
  }
}

@mixin iPodWebappLandscape{
  @media screen and (max-height: 300px){
    @content;
  }
}

@mixin iPodSafariLandscape{
  @media screen and (max-height: 208px){
    @content;
  }
}


