Skip to content

Instantly share code, notes, and snippets.

@imrexhuang
Created July 23, 2014 13:27
Show Gist options
  • Save imrexhuang/0bae4452b6e63e1a4278 to your computer and use it in GitHub Desktop.
Save imrexhuang/0bae4452b6e63e1a4278 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
//http://sassandcompass.com
//Sass and Compass for Designers第三章範例
$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;
}
.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