Skip to content

Instantly share code, notes, and snippets.

@gillesv
Created May 31, 2011 08:02
Show Gist options
  • Save gillesv/1000134 to your computer and use it in GitHub Desktop.
Save gillesv/1000134 to your computer and use it in GitHub Desktop.
/*
style.less
*/
@import "libs/reset.less";
@import "mediaqueries/global.less";
@import "mediaqueries/mobile.less";
@import "mediaqueries/tablet.less";
@import "mediaqueries/desktop.less";
@import "mediaqueries/huge.less";
@media only screen and (min-width: 480px) {
.mqMobile; /* Use mix-in to make sure that the styles are expanded inside the mediaquery */
}
@media only screen and (min-width: 768px) {
.mqTablet; /* Use mix-in to make sure that the styles are expanded inside the mediaquery */
}
@media only screen and (min-width: 992px) {
.mqDesktop; /* Use mix-in to make sure that the styles are expanded inside the mediaquery */
}
@media only screen and (min-width: 1280px) {
.mqHuge; /* Use mix-in to make sure that the styles are expanded inside the mediaquery */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment