Created
July 23, 2014 13:27
-
-
Save imrexhuang/0bae4452b6e63e1a4278 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) | |
// ---- | |
//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; | |
} |
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
.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