Created
February 1, 2013 06:19
-
-
Save peterldowns/4689669 to your computer and use it in GitHub Desktop.
Demo of responsive template with mixins.
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
// Rename: | |
// .locu-mobile-menu => .mobile-mixin | |
// .locu-web-menu => .web-mixin | |
// Then, use the mixins like so | |
@media screen and (max-width: 480px) { | |
.mobile-mixin; | |
} | |
// Keep this if you want the mobile preview to show your small-screen style | |
.locu-mobile-menu { | |
.mobile-mixin; | |
} | |
@media screen and (min-width: 481px) { | |
.web-mixin; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment