├── .csscomb.json ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── CNAME ├── css │ ├── cartonbox.css │ ├── cartonbox.min.css │ ├── libs.min.css │ └── main.min.css ├── img │ ├── image-1-small.jpg │ ├── image-1.jpg │ ├── image-2-small.jpg │ ├── image-2.jpg │ ├── image-3-small.jpg │ ├── image-3.jpg │ ├── image-4-small.jpg │ ├── image-4.jpg │ ├── image-5-small.jpg │ ├── image-5.jpg │ ├── image-6-small.jpg │ ├── image-6.jpg │ ├── image-7-small.jpg │ ├── image-7.jpg │ ├── image-8-small.jpg │ ├── image-8.jpg │ ├── pic-1.jpg │ ├── pic-2.jpg │ ├── pic-3.jpg │ ├── video-1-small.jpg │ ├── video-2-small.jpg │ └── video-3-small.jpg ├── index.html └── js │ ├── app.js │ ├── cartonbox.js │ ├── cartonbox.min.js │ └── libs.min.js ├── gulpfile.js ├── package.json └── src ├── img ├── image-1-small.jpg ├── image-1.jpg ├── image-2-small.jpg ├── image-2.jpg ├── image-3-small.jpg ├── image-3.jpg ├── image-4-small.jpg ├── image-4.jpg ├── image-5-small.jpg ├── image-5.jpg ├── image-6-small.jpg ├── image-6.jpg ├── image-7-small.jpg ├── image-7.jpg ├── image-8-small.jpg ├── image-8.jpg ├── pic-1.jpg ├── pic-2.jpg ├── pic-3.jpg ├── video-1-small.jpg ├── video-2-small.jpg └── video-3-small.jpg ├── index.html ├── js ├── app.js └── cartonbox.js └── less ├── cartonbox.less └── main.less /.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/.csscomb.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/README.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | cartonbox.constlab.ru -------------------------------------------------------------------------------- /docs/css/cartonbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/css/cartonbox.css -------------------------------------------------------------------------------- /docs/css/cartonbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/css/cartonbox.min.css -------------------------------------------------------------------------------- /docs/css/libs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/css/libs.min.css -------------------------------------------------------------------------------- /docs/css/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/css/main.min.css -------------------------------------------------------------------------------- /docs/img/image-1-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-1-small.jpg -------------------------------------------------------------------------------- /docs/img/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-1.jpg -------------------------------------------------------------------------------- /docs/img/image-2-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-2-small.jpg -------------------------------------------------------------------------------- /docs/img/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-2.jpg -------------------------------------------------------------------------------- /docs/img/image-3-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-3-small.jpg -------------------------------------------------------------------------------- /docs/img/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-3.jpg -------------------------------------------------------------------------------- /docs/img/image-4-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-4-small.jpg -------------------------------------------------------------------------------- /docs/img/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-4.jpg -------------------------------------------------------------------------------- /docs/img/image-5-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-5-small.jpg -------------------------------------------------------------------------------- /docs/img/image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-5.jpg -------------------------------------------------------------------------------- /docs/img/image-6-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-6-small.jpg -------------------------------------------------------------------------------- /docs/img/image-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-6.jpg -------------------------------------------------------------------------------- /docs/img/image-7-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-7-small.jpg -------------------------------------------------------------------------------- /docs/img/image-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-7.jpg -------------------------------------------------------------------------------- /docs/img/image-8-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-8-small.jpg -------------------------------------------------------------------------------- /docs/img/image-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/image-8.jpg -------------------------------------------------------------------------------- /docs/img/pic-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/pic-1.jpg -------------------------------------------------------------------------------- /docs/img/pic-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/pic-2.jpg -------------------------------------------------------------------------------- /docs/img/pic-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/pic-3.jpg -------------------------------------------------------------------------------- /docs/img/video-1-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/video-1-small.jpg -------------------------------------------------------------------------------- /docs/img/video-2-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/video-2-small.jpg -------------------------------------------------------------------------------- /docs/img/video-3-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/img/video-3-small.jpg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/js/app.js -------------------------------------------------------------------------------- /docs/js/cartonbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/js/cartonbox.js -------------------------------------------------------------------------------- /docs/js/cartonbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/js/cartonbox.min.js -------------------------------------------------------------------------------- /docs/js/libs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/docs/js/libs.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/package.json -------------------------------------------------------------------------------- /src/img/image-1-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-1-small.jpg -------------------------------------------------------------------------------- /src/img/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-1.jpg -------------------------------------------------------------------------------- /src/img/image-2-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-2-small.jpg -------------------------------------------------------------------------------- /src/img/image-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-2.jpg -------------------------------------------------------------------------------- /src/img/image-3-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-3-small.jpg -------------------------------------------------------------------------------- /src/img/image-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-3.jpg -------------------------------------------------------------------------------- /src/img/image-4-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-4-small.jpg -------------------------------------------------------------------------------- /src/img/image-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-4.jpg -------------------------------------------------------------------------------- /src/img/image-5-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-5-small.jpg -------------------------------------------------------------------------------- /src/img/image-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-5.jpg -------------------------------------------------------------------------------- /src/img/image-6-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-6-small.jpg -------------------------------------------------------------------------------- /src/img/image-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-6.jpg -------------------------------------------------------------------------------- /src/img/image-7-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-7-small.jpg -------------------------------------------------------------------------------- /src/img/image-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-7.jpg -------------------------------------------------------------------------------- /src/img/image-8-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-8-small.jpg -------------------------------------------------------------------------------- /src/img/image-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/image-8.jpg -------------------------------------------------------------------------------- /src/img/pic-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/pic-1.jpg -------------------------------------------------------------------------------- /src/img/pic-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/pic-2.jpg -------------------------------------------------------------------------------- /src/img/pic-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/pic-3.jpg -------------------------------------------------------------------------------- /src/img/video-1-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/video-1-small.jpg -------------------------------------------------------------------------------- /src/img/video-2-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/video-2-small.jpg -------------------------------------------------------------------------------- /src/img/video-3-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/img/video-3-small.jpg -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/index.html -------------------------------------------------------------------------------- /src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/js/app.js -------------------------------------------------------------------------------- /src/js/cartonbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/js/cartonbox.js -------------------------------------------------------------------------------- /src/less/cartonbox.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/less/cartonbox.less -------------------------------------------------------------------------------- /src/less/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constlab/cartonbox/HEAD/src/less/main.less --------------------------------------------------------------------------------