Skip to content

Instantly share code, notes, and snippets.

@bcole808
Created August 31, 2015 17:50
Show Gist options
  • Save bcole808/1d3f4eb93e428ee16a73 to your computer and use it in GitHub Desktop.
Save bcole808/1d3f4eb93e428ee16a73 to your computer and use it in GitHub Desktop.
SCSS mixin for UI-Scaffolding
@mixin ui-scaffolding($color:"rgba(0,255,100)", $label:"PLACEHOLDER") {
position: relative;
outline: 1px solid $color;
background: rgba($color, 0.2);
&:before {
content: $label;
display: block;
position: absolute;
top: 50%;
left: 50%;
width: 200px;
margin-left: -100px;
margin-top: -10px;
font-weight: bold;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment