Skip to content

Instantly share code, notes, and snippets.

View garyconstable's full-sized avatar
🏠
Working from home

Gary Constable garyconstable

🏠
Working from home
View GitHub Profile
@garyconstable
garyconstable / rwd.css
Last active October 21, 2015 11:10 — forked from trey/rwd.css
/*========== Mobile First Method ==========*/
@media only screen and (min-width : 320px) {}
@media only screen and (min-width : 480px) {}
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : portrait) {}
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : landscape){}
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {}
@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : landscape){}
@media only screen and (min-width : 768px) {}
@media only screen and (min-width : 992px) {}