├── .gitignore ├── LICENSE ├── README.md ├── css └── styles.css ├── gulpfile.js ├── img └── yffgke3y4f8-tim-stief.jpg ├── index.html ├── index.pug ├── js └── scripts.js └── scss └── styles.scss /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmgonzalves/splash-transition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmgonzalves/splash-transition/HEAD/README.md -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmgonzalves/splash-transition/HEAD/css/styles.css -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmgonzalves/splash-transition/HEAD/gulpfile.js -------------------------------------------------------------------------------- /img/yffgke3y4f8-tim-stief.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmgonzalves/splash-transition/HEAD/img/yffgke3y4f8-tim-stief.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmgonzalves/splash-transition/HEAD/index.html -------------------------------------------------------------------------------- /index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmgonzalves/splash-transition/HEAD/index.pug -------------------------------------------------------------------------------- /js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmgonzalves/splash-transition/HEAD/js/scripts.js -------------------------------------------------------------------------------- /scss/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lmgonzalves/splash-transition/HEAD/scss/styles.scss --------------------------------------------------------------------------------