Created
February 7, 2015 01:13
-
-
Save mndvns/ecf1bf446180830826c9 to your computer and use it in GitHub Desktop.
ESS dream interface from the future
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
| var color = props.color || 'red' | |
| button | |
| color: =color | |
| yield | |
| @media | |
| yield mobile |
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 Button from 'constructor.ess?raw' | |
| .modal | |
| Button(color='blue') | |
| background: black | |
| block mobile | |
| background: white |
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
| .modal button { | |
| color: blue; | |
| background: black; | |
| } | |
| @media { | |
| .modal button { | |
| background: white; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment