Sha256: 25377dba16ab0091f03932b1e258366535ffd05ef9e10b745aa405bf07162dae
Contents?: true
Size: 989 Bytes
Versions: 1
Compression:
Stored size: 989 Bytes
Contents
@mixin mobile { @media only screen and (min-width : 320px) and (max-width : 480px) { @content; } } @mixin mobile-portrait { @media only screen and (max-width : 320px) { @content; } } @mixin mobile-landscape { @media only screen and (min-width : 321px) { @content; } } @mixin tablet { @media only screen and (min-width : 768px) and (max-width : 1024px) { @content; } } @mixin tablet-portrait { @media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) { @content; } } @mixin tablet-landscape { @media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) { @content; } } @mixin desktop { @media only screen and (min-width : 1224px) { @content; } } @mixin wide-screen { @media only screen and (min-width : 1824px) { @content; } } @mixin retina { @media only screen and (-webkit-min-device-pixel-ratio : 1.5), only screen and (min-device-pixel-ratio : 1.5) { @content; } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
stitch-0.1.3.2 | stylesheets/stitch/patterns/responsive/_media.scss |