All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gems.bourbon-4.2.5.app.assets.stylesheets.css3._hidpi-media-query.scss Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
// HiDPI mixin. Default value set to 1.3 to target Google Nexus 7 (http://bjango.com/articles/min-device-pixel-ratio/)
@mixin hidpi($ratio: 1.3) {
  @media only screen and (-webkit-min-device-pixel-ratio: $ratio),
  only screen and (min--moz-device-pixel-ratio: $ratio),
  only screen and (-o-min-device-pixel-ratio: #{$ratio}/1),
  only screen and (min-resolution: round($ratio * 96dpi)),
  only screen and (min-resolution: $ratio * 1dppx) {
    @content;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy