Sha256: ec3b92b2746ca9ff8b3d38d3ca355e66be98a5e3aa755723458358c5ed731b71

Contents?: true

Size: 749 Bytes

Versions: 3

Compression:

Stored size: 749 Bytes

Contents

// https://github.com/malarkey/320andup/

$respond-above-xs: 480px !default
$respond-above-s:  600px !default
$respond-above-m:  768px !default
$respond-above-l:  992px !default
$respond-above-xl: 1382px !default

=respond-above($screen-size)
  @if $screen-size == xs
    @media only screen and (min-width: $respond-above-xs)
      @content
  @else if $screen-size == s
    @media only screen and (min-width: $respond-above-s)
      @content
  @else if $screen-size == m
    @media only screen and (min-width: $respond-above-m)
      @content
  @else if $screen-size == l
    @media only screen and (min-width: $respond-above-l)
      @content
  @else if $screen-size == xl
    @media only screen and (min-width: $respond-above-xl)
      @content
  

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
compass-respond-0.1.0 lib/stylesheets/_respond-above.sass
compass-respond-0.0.4 lib/stylesheets/_respond-above.sass
compass-respond-0.0.3 lib/stylesheets/_respond-above.sass