Skip to content

Instantly share code, notes, and snippets.

View khorneflakes-dev's full-sized avatar

Erick Mamani khorneflakes-dev

  • KhorneFlakes
  • Bolivia
  • 11:26 (UTC -04:00)
View GitHub Profile
@khorneflakes-dev
khorneflakes-dev / media-query.css
Created December 15, 2022 07:21 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */
@khorneflakes-dev
khorneflakes-dev / gist:1dc94c1e09ff69e20cd05a6521eb36dc
Created December 3, 2022 10:31 — 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 */
}