Created
July 23, 2013 12:58
-
-
Save kilmc/6062177 to your computer and use it in GitHub Desktop.
Colour Test Mixin
This file contains hidden or 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
| @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