(Stateless) Functional Component aka Pure Component
This file contains 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
// Original | |
// | |
// Markup: | |
// | |
// <button class="button">Button</button> | |
// <button class="button button-primary">Button</button> | |
// <button class="button button-danger">Button</button> | |
// | |
// Total selectors: 6 | |
// Total declarations: 19 |
This file contains 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
/* Solarized Dark | |
For use with Jekyll and Pygments | |
http://ethanschoonover.com/solarized | |
SOLARIZED HEX ROLE | |
--------- -------- ------------------------------------------ | |
base03 #002b36 background | |
base01 #586e75 comments / secondary content |
This file contains 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.4.0.rc.1) | |
// Compass (v1.0.0.alpha.20) | |
// ---- | |
$zindex: ( | |
one: 9, | |
two: 10, | |
); |
This file contains 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
# Load resources | |
config = require( "./gulpconfig.json" ) | |
pkg = require( "./package.json" ) | |
# Load all plugins from pkg.json | |
gulp = require( "gulp" ) | |
$ = require( "gulp-load-plugins" )( ) | |
# Clean public dir | |
gulp.task( "clean", -> |
This file contains 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": "abaqis3.0", | |
"version": "0.0.1", | |
"devDependencies": { | |
"grunt": "~0.4.2", | |
"grunt-cli": "0.1.9", | |
"grunt-contrib-uglify": "~0.3.1", | |
"grunt-contrib-coffee": "~0.8.2", | |
"grunt-contrib-compass": "~0.7.2", | |
"grunt-contrib-concat": "~0.3.0", |
This file contains 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
/** | |
* Component Constructor | |
* | |
* Used to provide a means for overriding default styles without redundant output | |
* Allows for the component to be package managed with a tool like bower | |
* without being tied to its predefined styles/settings for unit testing | |
* | |
* Sass v3.3.2 (Maptastic Maple) | |
* Compass (v1.0.0.alpha.19) | |
* |
This file contains 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
/** | |
* Component Constructor | |
* | |
* Used to provide a means for overriding default styles without redundant output | |
* Allows for the component to be package managed with a tool like bower | |
* without being tied to its predefined styles/settings for unit testing | |
* | |
* Sass v3.3.2 (Maptastic Maple) | |
* Compass (v1.0.0.alpha.19) | |
* |
NewerOlder