Skip to content

Instantly share code, notes, and snippets.

@kilmc
Created July 23, 2013 12:58
Show Gist options
  • Select an option

  • Save kilmc/6062177 to your computer and use it in GitHub Desktop.

Select an option

Save kilmc/6062177 to your computer and use it in GitHub Desktop.
Colour Test Mixin
@mixin colour-test($color: #ff0099, $index: 1, $offset: 0) {
.box-#{$index} {
background-color: $color;
display: block;
height: 150px;
width: 150px;
top: 50px;
left: 400px + ($offset*180px);
position: fixed;
z-index: 10000;
&:before {
color: #000;
content: "Box-#{$index} | #{$color}";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment