diff --git a/index.styl b/index.styl new file mode 100644 index 0000000..4f9c5e0 --- /dev/null +++ b/index.styl @@ -0,0 +1 @@ +@import 'lib/kouto-swiss/' diff --git a/lib/kouto-swiss.js b/lib/kouto-swiss.js new file mode 100644 index 0000000..aac160c --- /dev/null +++ b/lib/kouto-swiss.js @@ -0,0 +1,21 @@ +/*! + * Kouto Swiss + * A complete CSS framework for Stylus + * https://github.com/leny/kouto-swiss + * MIT Licensed + */ + +var stylus = require( "stylus" ), + path = require( "path" ), + nodes = stylus.nodes, + utils = stylus.utils; + +exports = module.exports = function() { + return function( oStyle ){ + oStyle.include( __dirname ); + }; +}; + +exports.version = require( path.join( __dirname, "../package.json" ) ).version; + +exports.path = __dirname; diff --git a/lib/kouto-swiss/index.styl b/lib/kouto-swiss/index.styl new file mode 100644 index 0000000..e713bea --- /dev/null +++ b/lib/kouto-swiss/index.styl @@ -0,0 +1 @@ +@import 'reset' diff --git a/lib/kouto-swiss/reset.styl b/lib/kouto-swiss/reset.styl new file mode 100644 index 0000000..4222270 --- /dev/null +++ b/lib/kouto-swiss/reset.styl @@ -0,0 +1,5 @@ +reset-box-sizing() + * + *:before + *:after + box-sizing border-box diff --git a/test/runner.js b/test/runner.js index 872cab1..2fff45d 100644 --- a/test/runner.js +++ b/test/runner.js @@ -1,7 +1,8 @@ -/** +/*! * Kouto Swiss * A complete CSS framework for Stylus * https://github.com/leny/kouto-swiss + * MIT Licensed * * Test Runner * (inspired from nib test runner)