Created
December 7, 2015 08:06
-
-
Save bkenny/2f69781ee9f91c915993 to your computer and use it in GitHub Desktop.
This file contains 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
@media only screen and (min-width: 1024px) { | |
/* Add your custom styles here for Desktop */ | |
} | |
@media only screen and (max-width: 1023px) { | |
/* Add your custom styles here for Tablet */ | |
} | |
@media only screen and (max-width: 640px) { | |
/* Add your custom styles here for Large Mobile */ | |
} | |
@media only screen and (max-width: 480px) { | |
/* Add your custom styles here for Small Mobile */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment