Created
February 16, 2014 08:01
-
-
Save leidottw/9030928 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
| <div> | |
| 變亮變暗 | |
| </div> |
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.0.rc.4) | |
| // Compass (v1.0.0.alpha.18) | |
| // ---- | |
| $color: #ca76ba; | |
| div { | |
| background: $color; | |
| &:hover { | |
| background: $color * 1.5; | |
| } | |
| &:active { | |
| background: $color / 1.5; | |
| } | |
| } |
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
| div { | |
| background: #ca76ba; | |
| } | |
| div:hover { | |
| background: #ffb1ff; | |
| } | |
| div:active { | |
| background: #864e7c; | |
| } |
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
| <div> | |
| 變亮變暗 | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment