├── .gitignore ├── .history └── playground │ ├── index_20190315121252.html │ └── index_20190315121258.html ├── dist ├── decent-messup.js └── test.js ├── header.jpg ├── index.js ├── input.js ├── loader.js ├── nodemon.json ├── package.json ├── playground ├── demo.js ├── favicon.ico ├── index.html ├── index.js └── thirdparty │ ├── fonts │ ├── opensans-bold-webfont.eot │ ├── opensans-bold-webfont.svg │ ├── opensans-bold-webfont.ttf │ ├── opensans-bold-webfont.woff │ ├── opensans-bolditalic-webfont.eot │ ├── opensans-bolditalic-webfont.svg │ ├── opensans-bolditalic-webfont.ttf │ ├── opensans-bolditalic-webfont.woff │ ├── opensans-extrabold-webfont.eot │ ├── opensans-extrabold-webfont.svg │ ├── opensans-extrabold-webfont.ttf │ ├── opensans-extrabold-webfont.woff │ ├── opensans-italic-webfont.eot │ ├── opensans-italic-webfont.svg │ ├── opensans-italic-webfont.ttf │ ├── opensans-italic-webfont.woff │ ├── opensans-regular-webfont.eot │ ├── opensans-regular-webfont.svg │ ├── opensans-regular-webfont.ttf │ └── opensans-regular-webfont.woff │ ├── images │ ├── bg-ramp.jpg │ ├── blockquote-gfx-2x.png │ ├── blockquote-gfx.png │ ├── chevron-2x.png │ ├── chevron.png │ ├── download-fallback-bg.png │ ├── download-sprite.png │ ├── footer-ramp.jpg │ ├── fork-sprite.png │ ├── hr-2x.jpg │ ├── hr.jpg │ ├── octocat-2x.png │ ├── octocat.png │ ├── ribbon-tail-sprite-2x.png │ ├── ribbon-tail-sprite.png │ ├── shield-fallback.png │ ├── shield.png │ ├── site-2.png │ ├── small-ribbon-tail-sprite-2x.png │ └── small-ribbon-tail-sprite.png │ ├── javascripts │ ├── headsmart.min.js │ ├── main.js │ └── modernizr.js │ ├── jquery.min.js │ └── stylesheets │ ├── core.css │ ├── github-light.css │ ├── mobile.css │ ├── non-screen.css │ ├── print.css │ └── screen.css ├── readme.md ├── start.js ├── test ├── dist │ └── test.js ├── index.js ├── package-lock.json ├── package.json └── webpack.config.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .history -------------------------------------------------------------------------------- /.history/playground/index_20190315121252.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/.history/playground/index_20190315121252.html -------------------------------------------------------------------------------- /.history/playground/index_20190315121258.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/.history/playground/index_20190315121258.html -------------------------------------------------------------------------------- /dist/decent-messup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/dist/decent-messup.js -------------------------------------------------------------------------------- /dist/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/dist/test.js -------------------------------------------------------------------------------- /header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/header.jpg -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/index.js -------------------------------------------------------------------------------- /input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/input.js -------------------------------------------------------------------------------- /loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/loader.js -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/package.json -------------------------------------------------------------------------------- /playground/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/demo.js -------------------------------------------------------------------------------- /playground/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/favicon.ico -------------------------------------------------------------------------------- /playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/index.html -------------------------------------------------------------------------------- /playground/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/index.js -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-bold-webfont.eot -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-bold-webfont.svg -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-bold-webfont.ttf -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-bold-webfont.woff -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-bolditalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-bolditalic-webfont.eot -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-bolditalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-bolditalic-webfont.svg -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-bolditalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-bolditalic-webfont.ttf -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-bolditalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-bolditalic-webfont.woff -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-extrabold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-extrabold-webfont.eot -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-extrabold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-extrabold-webfont.svg -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-extrabold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-extrabold-webfont.ttf -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-extrabold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-extrabold-webfont.woff -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-italic-webfont.eot -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-italic-webfont.svg -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-italic-webfont.ttf -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-italic-webfont.woff -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-regular-webfont.eot -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-regular-webfont.svg -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-regular-webfont.ttf -------------------------------------------------------------------------------- /playground/thirdparty/fonts/opensans-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/fonts/opensans-regular-webfont.woff -------------------------------------------------------------------------------- /playground/thirdparty/images/bg-ramp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/bg-ramp.jpg -------------------------------------------------------------------------------- /playground/thirdparty/images/blockquote-gfx-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/blockquote-gfx-2x.png -------------------------------------------------------------------------------- /playground/thirdparty/images/blockquote-gfx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/blockquote-gfx.png -------------------------------------------------------------------------------- /playground/thirdparty/images/chevron-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/chevron-2x.png -------------------------------------------------------------------------------- /playground/thirdparty/images/chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/chevron.png -------------------------------------------------------------------------------- /playground/thirdparty/images/download-fallback-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/download-fallback-bg.png -------------------------------------------------------------------------------- /playground/thirdparty/images/download-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/download-sprite.png -------------------------------------------------------------------------------- /playground/thirdparty/images/footer-ramp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/footer-ramp.jpg -------------------------------------------------------------------------------- /playground/thirdparty/images/fork-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/fork-sprite.png -------------------------------------------------------------------------------- /playground/thirdparty/images/hr-2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/hr-2x.jpg -------------------------------------------------------------------------------- /playground/thirdparty/images/hr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/hr.jpg -------------------------------------------------------------------------------- /playground/thirdparty/images/octocat-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/octocat-2x.png -------------------------------------------------------------------------------- /playground/thirdparty/images/octocat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/octocat.png -------------------------------------------------------------------------------- /playground/thirdparty/images/ribbon-tail-sprite-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/ribbon-tail-sprite-2x.png -------------------------------------------------------------------------------- /playground/thirdparty/images/ribbon-tail-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/ribbon-tail-sprite.png -------------------------------------------------------------------------------- /playground/thirdparty/images/shield-fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/shield-fallback.png -------------------------------------------------------------------------------- /playground/thirdparty/images/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/shield.png -------------------------------------------------------------------------------- /playground/thirdparty/images/site-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/site-2.png -------------------------------------------------------------------------------- /playground/thirdparty/images/small-ribbon-tail-sprite-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/small-ribbon-tail-sprite-2x.png -------------------------------------------------------------------------------- /playground/thirdparty/images/small-ribbon-tail-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/images/small-ribbon-tail-sprite.png -------------------------------------------------------------------------------- /playground/thirdparty/javascripts/headsmart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/javascripts/headsmart.min.js -------------------------------------------------------------------------------- /playground/thirdparty/javascripts/main.js: -------------------------------------------------------------------------------- 1 | console.log('This would be the main JS file.'); 2 | -------------------------------------------------------------------------------- /playground/thirdparty/javascripts/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/javascripts/modernizr.js -------------------------------------------------------------------------------- /playground/thirdparty/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/jquery.min.js -------------------------------------------------------------------------------- /playground/thirdparty/stylesheets/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/stylesheets/core.css -------------------------------------------------------------------------------- /playground/thirdparty/stylesheets/github-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/stylesheets/github-light.css -------------------------------------------------------------------------------- /playground/thirdparty/stylesheets/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/stylesheets/mobile.css -------------------------------------------------------------------------------- /playground/thirdparty/stylesheets/non-screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/stylesheets/non-screen.css -------------------------------------------------------------------------------- /playground/thirdparty/stylesheets/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/stylesheets/print.css -------------------------------------------------------------------------------- /playground/thirdparty/stylesheets/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/playground/thirdparty/stylesheets/screen.css -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/readme.md -------------------------------------------------------------------------------- /start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/start.js -------------------------------------------------------------------------------- /test/dist/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/test/dist/test.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/test/index.js -------------------------------------------------------------------------------- /test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/test/package-lock.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/test/package.json -------------------------------------------------------------------------------- /test/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/test/webpack.config.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blackmiaool/decent-messup/HEAD/webpack.config.js --------------------------------------------------------------------------------