Created
February 25, 2014 00:50
-
-
Save schnell18/9200451 to your computer and use it in GitHub Desktop.
CSS skeleton for Responsive Web Design
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
/* Put your reset styles here */ | |
/* Put styles for desktop and basic styles for all devices here */ | |
body { | |
/* properties for body here */ | |
} | |
/* medium display only */ | |
@media (min-width: 481px) and (max-width:768px) { | |
body { | |
/* properties that only apply to tablets */ | |
} | |
} | |
/* small display only */ | |
@media (max-width:480px) { | |
body { | |
/* properties that only apply to phones */ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment