Skip to content

Instantly share code, notes, and snippets.

@danscotton
Created May 11, 2012 15:03
Show Gist options
  • Save danscotton/2660309 to your computer and use it in GitHub Desktop.
Save danscotton/2660309 to your computer and use it in GitHub Desktop.
// ---------------------------------------
// BLQ
// ---------------------------------------
#blq-container {
background: @site-background;
// imports
.i(@device);
}
// ---------------------------------------
// IMPORT MIXINS
// ---------------------------------------
.i('core') {
background: blue;
}
.i('compact') {
@media (max-width: 640px) {
background: red;
}
}
.i('tablet') {
.i('compact');
@media (min-width: 640px) {
background: green;
}
}
.i('wide') {
.i('compact');
.i('tablet');
@media (min-width: 960px) {
background: yellow;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment