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
{ | |
"root": true, | |
"extends": "supermind", | |
"env": { | |
"jest": true | |
} | |
} |
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
# http://editorconfig.org | |
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
indent_style = space |
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
{ | |
"name": "isomorphic-react", | |
"description": "Isomorphic React", | |
"version": "1.0.0", | |
"main": "index.js", | |
"license": "MIT", | |
"scripts": { | |
"start": "babel-node index.js --presets es2015,stage-2" | |
}, | |
"dependencies": { |
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
# THE MOBILE WEB | |
## Planning | |
* Demographic Analysis | |
* Setting Up a Test Bed | |
* Statement of Work (SOW) | |
* Setting & Managing Expectations | |
## Design | |
* Content First and then Mobile First, well Second… |
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
// Example 1 | |
@function theme($value) | |
@return if($value == "light", #FFFFFF, #000000) | |
background: theme("light") // Outputs #FFFFFF | |
background: theme("dark") // Outputs #000000 | |
background: theme("cats") // Outputs #000000 | |
// Example 2 | |
@function even($value) |