├── .gitignore ├── README.md ├── css ├── .sass-cache │ └── f06f659efa73d6e7bef3e15945001ac4273933b6 │ │ └── component.scssc ├── component.css ├── component.css.map ├── component.scss ├── demo.css └── normalize.css ├── favicon.ico ├── fonts └── codropsicons │ ├── codropsicons.eot │ ├── codropsicons.svg │ ├── codropsicons.ttf │ ├── codropsicons.woff │ └── license.txt ├── img ├── camera.svg ├── lookaround.svg ├── play.svg ├── seat.svg └── seats.svg ├── index.html ├── js ├── classie.js ├── main.js └── modernizr-custom.js └── media ├── sintel.jpg ├── sintel.mp4 └── sintel.ogg /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | .sass-cache/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/README.md -------------------------------------------------------------------------------- /css/.sass-cache/f06f659efa73d6e7bef3e15945001ac4273933b6/component.scssc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/css/.sass-cache/f06f659efa73d6e7bef3e15945001ac4273933b6/component.scssc -------------------------------------------------------------------------------- /css/component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/css/component.css -------------------------------------------------------------------------------- /css/component.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/css/component.css.map -------------------------------------------------------------------------------- /css/component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/css/component.scss -------------------------------------------------------------------------------- /css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/css/demo.css -------------------------------------------------------------------------------- /css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/css/normalize.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/codropsicons/codropsicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/fonts/codropsicons/codropsicons.eot -------------------------------------------------------------------------------- /fonts/codropsicons/codropsicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/fonts/codropsicons/codropsicons.svg -------------------------------------------------------------------------------- /fonts/codropsicons/codropsicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/fonts/codropsicons/codropsicons.ttf -------------------------------------------------------------------------------- /fonts/codropsicons/codropsicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/fonts/codropsicons/codropsicons.woff -------------------------------------------------------------------------------- /fonts/codropsicons/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/fonts/codropsicons/license.txt -------------------------------------------------------------------------------- /img/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/img/camera.svg -------------------------------------------------------------------------------- /img/lookaround.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/img/lookaround.svg -------------------------------------------------------------------------------- /img/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/img/play.svg -------------------------------------------------------------------------------- /img/seat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/img/seat.svg -------------------------------------------------------------------------------- /img/seats.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/img/seats.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/index.html -------------------------------------------------------------------------------- /js/classie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/js/classie.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/js/main.js -------------------------------------------------------------------------------- /js/modernizr-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/js/modernizr-custom.js -------------------------------------------------------------------------------- /media/sintel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/media/sintel.jpg -------------------------------------------------------------------------------- /media/sintel.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/media/sintel.mp4 -------------------------------------------------------------------------------- /media/sintel.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/SeatPreview/HEAD/media/sintel.ogg --------------------------------------------------------------------------------