Skip to content

Instantly share code, notes, and snippets.

@binarykore
Created September 3, 2023 23:08
Show Gist options
  • Select an option

  • Save binarykore/0dbfcece30b6f477ecf8c7924849c1f3 to your computer and use it in GitHub Desktop.

Select an option

Save binarykore/0dbfcece30b6f477ecf8c7924849c1f3 to your computer and use it in GitHub Desktop.
@media only screen and (max-width: 414px) and (min-width: 360px){
mobile{
//Insert Mobile Stylesheet here..
}
}
@media only screen and (max-width: 1280px) and (min-width: 601px){
tablet{
//Insert Tablet Stylesheet here..
}
}
@media only screen and (max-width: 1920px) and (min-width: 1280px){
desktop{
//Insert Desktop Stylesheet here..
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment