Last active
September 21, 2021 15:18
-
-
Save nicolasleal570/4c9ae5faa97e1d8769f6b6214fbc0d12 to your computer and use it in GitHub Desktop.
Media Queries
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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