Skip to content

Instantly share code, notes, and snippets.

@nicolasleal570
Last active September 21, 2021 15:18
Show Gist options
  • Save nicolasleal570/4c9ae5faa97e1d8769f6b6214fbc0d12 to your computer and use it in GitHub Desktop.
Save nicolasleal570/4c9ae5faa97e1d8769f6b6214fbc0d12 to your computer and use it in GitHub Desktop.
Media Queries
/* Adds a black background to small phones */
body {
background: #000;
}
/* Adds a pink background to XL phones */
@media (min-width: 640px) {
body {
background: rgb(210, 61, 224);
}
}
/* Add a red background to tablets */
@media (min-width: 768px) {
body {
background: rgb(202, 20, 20);
}
}
/* Adds a green background to laptops */
@media (min-width: 1024px) {
body {
background: rgb(62, 218, 42);
}
}
/* Adds a blue background to full HD screens */
@media (min-width: 1280px) {
body {
background: rgb(34, 23, 185);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment