Created
August 31, 2015 17:50
-
-
Save bcole808/1d3f4eb93e428ee16a73 to your computer and use it in GitHub Desktop.
SCSS mixin for UI-Scaffolding
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 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