Sha256: a359ba198d2df516af809d0db2e0c8a76b6c7024aea2ebe51fde731765c68c5f
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 (max-width : 480px) { @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 : 1025px) { @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.4.beta.1 | stylesheets/stitch/patterns/responsive/_media.scss |