Skip to content

Instantly share code, notes, and snippets.

View prinick96's full-sized avatar
Dándole a golang!!

Brayan Narváez prinick96

Dándole a golang!!
View GitHub Profile
@prinick96
prinick96 / gist:c2919b64de30baa83c9e26579eeebc97
Created March 16, 2018 20:24 — forked from Mikodes/gist:be9b9ce42e46c3d4ccb6
All Media queries for resolutions
/* (320x480) iPhone (Original, 3G, 3GS) */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
/* insert styles here */
}
/* (320x480) Smartphone, Portrait */
@media only screen and (device-width: 320px) and (orientation: portrait) {
/* insert styles here */
}