├── .gitignore ├── .jsbeautifyrc ├── .jshintrc ├── README.md ├── components ├── sass │ ├── _base.scss │ ├── _layout.scss │ ├── _mixins.scss │ ├── _variables.scss │ ├── modules │ │ ├── _attractions.scss │ │ ├── _dining.scss │ │ ├── _events.scss │ │ ├── _footer.scss │ │ ├── _hotelinfo.scss │ │ ├── _intro.scss │ │ ├── _nav.scss │ │ ├── _rooms.scss │ │ └── _welcome.scss │ └── style.scss └── scripts │ ├── TweenMax.min.js │ ├── jqloader.js │ ├── jquery.js │ ├── jquery.scrollmagic.min.js │ └── script.js ├── gulpfile.js ├── hero.png └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | .sass-cache 5 | builds/**/images/* -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/.jshintrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/README.md -------------------------------------------------------------------------------- /components/sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/_base.scss -------------------------------------------------------------------------------- /components/sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/_layout.scss -------------------------------------------------------------------------------- /components/sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/_mixins.scss -------------------------------------------------------------------------------- /components/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/_variables.scss -------------------------------------------------------------------------------- /components/sass/modules/_attractions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/modules/_attractions.scss -------------------------------------------------------------------------------- /components/sass/modules/_dining.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/modules/_dining.scss -------------------------------------------------------------------------------- /components/sass/modules/_events.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/modules/_events.scss -------------------------------------------------------------------------------- /components/sass/modules/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/modules/_footer.scss -------------------------------------------------------------------------------- /components/sass/modules/_hotelinfo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/modules/_hotelinfo.scss -------------------------------------------------------------------------------- /components/sass/modules/_intro.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/modules/_intro.scss -------------------------------------------------------------------------------- /components/sass/modules/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/modules/_nav.scss -------------------------------------------------------------------------------- /components/sass/modules/_rooms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/modules/_rooms.scss -------------------------------------------------------------------------------- /components/sass/modules/_welcome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/modules/_welcome.scss -------------------------------------------------------------------------------- /components/sass/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/sass/style.scss -------------------------------------------------------------------------------- /components/scripts/TweenMax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/scripts/TweenMax.min.js -------------------------------------------------------------------------------- /components/scripts/jqloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/scripts/jqloader.js -------------------------------------------------------------------------------- /components/scripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/scripts/jquery.js -------------------------------------------------------------------------------- /components/scripts/jquery.scrollmagic.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/scripts/jquery.scrollmagic.min.js -------------------------------------------------------------------------------- /components/scripts/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/components/scripts/script.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/gulpfile.js -------------------------------------------------------------------------------- /hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/hero.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/responsive/HEAD/package.json --------------------------------------------------------------------------------