Sha256: a61a221231a35fa6559a622da67cce8d6e8100500615933c449321c9af88b284
Contents?: true
Size: 863 Bytes
Versions: 8
Compression:
Stored size: 863 Bytes
Contents
// Foundation-style media queries. // Works with Bootstrap3 out of the box. // Without bootstrap just define variables: // screen-xs-max, screen-{sm,md}-{min,max}, screen-lg-min // // Usage: // // @media #{$sm-up} { ... } // @media #{$sm-only} and #{$landscape} { ... } $screen: "only screen" !default; $landscape: "(orientation: landscape)" !default; $portrait: "(orientation: portrait)" !default; $xs-up: $screen !default; $xs-only: "(max-width: #{$screen-xs-max})" !default; $sm-up: "(min-width:#{$screen-sm-min})" !default; $sm-only: "(min-width:#{$screen-sm-min}) and (max-width:#{$screen-sm-max})" !default; $md-up: "(min-width:#{$screen-md-min})" !default; $md-only: "(min-width:#{$screen-md-min}) and (max-width:#{$screen-md-max})" !default; $lg-up: "(min-width:#{$screen-lg-min})" !default; $lg-only: "(min-width:#{$screen-lg-min})" !default;
Version data entries
8 entries across 8 versions & 1 rubygems