Sha256: c2492d277ccd040ef811da05d1755f6b736479b740b55e717e01ab1909c735d0

Contents?: true

Size: 1.05 KB

Versions: 1

Compression:

Stored size: 1.05 KB

Contents

// https://gist.github.com/1215856#file_7_media_queries.sass

$respond-to-handhelds-max: 479px !default

$respond-to-wide-handhelds-min: ($respond-to-handhelds-max + 1px) !default
$respond-to-wide-handhelds-max: 767px !default

$respond-to-tablets-min: ($respond-to-wide-handhelds-max + 1) !default
$respond-to-tablets-max: 959px !default

$respond-to-desktops-min: ($respond-to-tablets-max + 1) !default

=respond-to($device)
  @if $device == handhelds
    @media only screen and (max-width: $respond-to-handhelds-max)
      @content
  @else if $device == wide-handhelds
    @media only screen and (min-width: $respond-to-wide-handhelds-min) and (max-width: $respond-to-wide-handhelds-max)
      @content
  @else if $device == tablets
    @media only screen and (min-width: $respond-to-tablets-min) and (max-width: $respond-to-tablets-max)
      @content
  @else if $device == desktops
    @media only screen and (min-width: $respond-to-desktops-min)
      @content
  @else if $device == retina
    @media only screen and (-webkit-min-device-pixel-ratio: 2)
      @content

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
compass-respond-0.0.3 lib/stylesheets/_respond-to.sass