Created
July 23, 2014 13:11
-
-
Save imrexhuang/78dc8702af70cc3d7cc1 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.3.10) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
$colorA:#5538c8; | |
$colorB:#137EDC; | |
$colorC:#74a098; | |
$colorD:#a08874; | |
$colorE:#f3cbab; | |
.box{ | |
padding: 2em; | |
color: $colorA; | |
background-color:$colorB; | |
} | |
.success-box{ | |
@extend .box; | |
border: 2px dotted $colorC; | |
} | |
.warning-box{ | |
@extend .box; | |
border: 2px dotted $colorD; | |
} | |
.info-box{ | |
@extend .box; | |
border: 2px dotted $colorE; | |
} |
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
.box, .success-box, .warning-box, .info-box { | |
padding: 2em; | |
color: #5538c8; | |
background-color: #137edc; | |
} | |
.success-box { | |
border: 2px dotted #74a098; | |
} | |
.warning-box { | |
border: 2px dotted #a08874; | |
} | |
.info-box { | |
border: 2px dotted #f3cbab; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment