Created
July 21, 2014 23:17
-
-
Save bensmithett/6389472a34d3473cb583 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.2.19) | |
// Compass (v0.12.6) | |
// ---- | |
.text-label-beta | |
//------------------------------- | |
// Size | |
//------------------------------- | |
&.-size-small | |
padding: 4px 4px 3px | |
border-radius: 3px | |
font-size: 9px | |
font-weight: bold | |
text-transform: uppercase | |
//------------------------------- | |
// Position | |
//------------------------------- | |
&.-position-top | |
vertical-align: top | |
//------------------------------- | |
// Presets | |
//------------------------------- | |
&.-preset-user-green | |
@extend .-color-green | |
@extend .-size-small | |
@extend .-position-top | |
@extend .-link | |
&.-preset-user-grey | |
@extend .-color-grey | |
@extend .-size-small | |
@extend .-position-top | |
@extend .-link | |
.other-module | |
&.-color-grey | |
background: WARNING |
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
.text-label-beta.-size-small, .text-label-beta.-preset-user-green, .text-label-beta.-preset-user-grey { | |
padding: 4px 4px 3px; | |
border-radius: 3px; | |
font-size: 9px; | |
font-weight: bold; | |
text-transform: uppercase; | |
} | |
.text-label-beta.-position-top, .text-label-beta.-preset-user-green, .text-label-beta.-preset-user-grey { | |
vertical-align: top; | |
} | |
.other-module.-color-grey, .other-module.text-label-beta.-preset-user-grey { | |
background: WARNING; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment