├── .gitignore ├── README.md ├── favicon.ico ├── gulpfile.js ├── imgs ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg └── README.md ├── index.html ├── package.json ├── screenshot.png └── sources ├── css ├── footer.styl ├── general.styl ├── icons.styl ├── result.styl └── style.styl ├── fonts └── fontello-427743df │ ├── LICENSE.txt │ ├── README.txt │ ├── config.json │ ├── css │ ├── animation.css │ ├── fontello-codes.css │ ├── fontello-embedded.css │ ├── fontello-ie7-codes.css │ ├── fontello-ie7.css │ └── fontello.css │ ├── demo.html │ └── font │ ├── fontello.eot │ ├── fontello.svg │ ├── fontello.ttf │ ├── fontello.woff │ └── fontello.woff2 ├── html └── index.jade ├── img ├── design-logo.png ├── favicon │ ├── 152.png │ ├── favicon.ico │ └── favicon.png └── social_img.png └── js ├── excuses.js ├── generator.js └── main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/favicon.ico -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/gulpfile.js -------------------------------------------------------------------------------- /imgs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/imgs/1.jpg -------------------------------------------------------------------------------- /imgs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/imgs/2.jpg -------------------------------------------------------------------------------- /imgs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/imgs/3.jpg -------------------------------------------------------------------------------- /imgs/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/imgs/4.jpg -------------------------------------------------------------------------------- /imgs/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/imgs/5.jpg -------------------------------------------------------------------------------- /imgs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/imgs/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/screenshot.png -------------------------------------------------------------------------------- /sources/css/footer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/css/footer.styl -------------------------------------------------------------------------------- /sources/css/general.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/css/general.styl -------------------------------------------------------------------------------- /sources/css/icons.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/css/icons.styl -------------------------------------------------------------------------------- /sources/css/result.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/css/result.styl -------------------------------------------------------------------------------- /sources/css/style.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/css/style.styl -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/LICENSE.txt -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/README.txt -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/config.json -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/css/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/css/animation.css -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/css/fontello-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/css/fontello-codes.css -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/css/fontello-embedded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/css/fontello-embedded.css -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/css/fontello-ie7-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/css/fontello-ie7-codes.css -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/css/fontello-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/css/fontello-ie7.css -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/css/fontello.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/css/fontello.css -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/demo.html -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/font/fontello.eot -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/font/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/font/fontello.svg -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/font/fontello.ttf -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/font/fontello.woff -------------------------------------------------------------------------------- /sources/fonts/fontello-427743df/font/fontello.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/fonts/fontello-427743df/font/fontello.woff2 -------------------------------------------------------------------------------- /sources/html/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/html/index.jade -------------------------------------------------------------------------------- /sources/img/design-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/img/design-logo.png -------------------------------------------------------------------------------- /sources/img/favicon/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/img/favicon/152.png -------------------------------------------------------------------------------- /sources/img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/img/favicon/favicon.ico -------------------------------------------------------------------------------- /sources/img/favicon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/img/favicon/favicon.png -------------------------------------------------------------------------------- /sources/img/social_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/img/social_img.png -------------------------------------------------------------------------------- /sources/js/excuses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/js/excuses.js -------------------------------------------------------------------------------- /sources/js/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/js/generator.js -------------------------------------------------------------------------------- /sources/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lgg/excuse-generator/HEAD/sources/js/main.js --------------------------------------------------------------------------------