Last active
April 2, 2017 13:39
-
-
Save dmitru/ee2a4992a502f0d02038e9600285a135 to your computer and use it in GitHub Desktop.
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
| @import 'themes.scss'; | |
| .app-container { | |
| @include themify($themes) { | |
| color: themed('textColor'); | |
| background-color: themed('backgroundColor'); | |
| } | |
| .title { | |
| font-family: sans-serif; | |
| font-weight: lighter; | |
| } | |
| .button { | |
| cursor: pointer; | |
| border-radius: 5px; | |
| padding: 15px 32px; | |
| display: inline-block; | |
| transition: color 0.1s, border-color 0.1s, background-color 0.1s; | |
| @include themify($themes) { | |
| border: themed('buttonBorder'); | |
| color: themed('buttonTextColor'); | |
| border-color: themed('buttonTextColor'); | |
| background-color: themed('buttonColor'); | |
| text-transform: themed('buttonTextTransform'); | |
| &:hover { | |
| color: themed('buttonTextHoverColor'); | |
| border-color: themed('buttonTextHoverColor'); | |
| background-color: themed('buttonHoverColor'); | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment