Skip to content

Instantly share code, notes, and snippets.

@dflynn15
Created January 12, 2015 16:49
Show Gist options
  • Save dflynn15/6e2780f475414653d7fe to your computer and use it in GitHub Desktop.
Save dflynn15/6e2780f475414653d7fe to your computer and use it in GitHub Desktop.
Testing the formatting function in gists.
.hero {
// First, styles that all brands
// have in common.
// (The "shared stuff")
font-size: 2em;
font-weight: bold;
border: 1px solid;
// Next, brand-specific styles.
// (The "themed stuff")
@include bobs-burgers {
border-color: yellow;
}
@include paddys-pub {
border-color: green;
}
@include stus-stews {
border-color: blue;
}
@include jurassic-fork {
border-color: brown;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment