Skip to content

Instantly share code, notes, and snippets.

@imrexhuang
Created July 23, 2014 13:11
Show Gist options
  • Save imrexhuang/78dc8702af70cc3d7cc1 to your computer and use it in GitHub Desktop.
Save imrexhuang/78dc8702af70cc3d7cc1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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;
}
.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