├── .vscode └── settings.json ├── assets ├── css │ ├── style.css │ ├── style.css.map │ ├── style.min.css │ └── style.min.css.map ├── fonts │ ├── Calibre-Black.eot │ ├── Calibre-Black.ttf │ ├── Calibre-Black.woff │ ├── Calibre-Black.woff2 │ ├── Calibre-BlackItalic.eot │ ├── Calibre-BlackItalic.ttf │ ├── Calibre-BlackItalic.woff │ ├── Calibre-BlackItalic.woff2 │ ├── Calibre-Bold.eot │ ├── Calibre-Bold.ttf │ ├── Calibre-Bold.woff │ ├── Calibre-Bold.woff2 │ ├── Calibre-BoldItalic.eot │ ├── Calibre-BoldItalic.ttf │ ├── Calibre-BoldItalic.woff │ ├── Calibre-BoldItalic.woff2 │ ├── Calibre-Light.eot │ ├── Calibre-Light.ttf │ ├── Calibre-Light.woff │ ├── Calibre-Light.woff2 │ ├── Calibre-LightItalic.eot │ ├── Calibre-LightItalic.ttf │ ├── Calibre-LightItalic.woff │ ├── Calibre-LightItalic.woff2 │ ├── Calibre-Medium.eot │ ├── Calibre-Medium.ttf │ ├── Calibre-Medium.woff │ ├── Calibre-Medium.woff2 │ ├── Calibre-MediumItalic.eot │ ├── Calibre-MediumItalic.ttf │ ├── Calibre-MediumItalic.woff │ ├── Calibre-MediumItalic.woff2 │ ├── Calibre-Regular.eot │ ├── Calibre-Regular.ttf │ ├── Calibre-Regular.woff │ ├── Calibre-Regular.woff2 │ ├── Calibre-RegularItalic.eot │ ├── Calibre-RegularItalic.ttf │ ├── Calibre-RegularItalic.woff │ ├── Calibre-RegularItalic.woff2 │ ├── Calibre-Semibold.eot │ ├── Calibre-Semibold.ttf │ ├── Calibre-Semibold.woff │ ├── Calibre-Semibold.woff2 │ ├── Calibre-SemiboldItalic.eot │ ├── Calibre-SemiboldItalic.ttf │ ├── Calibre-SemiboldItalic.woff │ ├── Calibre-SemiboldItalic.woff2 │ ├── Calibre-Thin.eot │ ├── Calibre-Thin.ttf │ ├── Calibre-Thin.woff │ ├── Calibre-Thin.woff2 │ ├── Calibre-ThinItalic.eot │ ├── Calibre-ThinItalic.ttf │ ├── Calibre-ThinItalic.woff │ ├── Calibre-ThinItalic.woff2 │ ├── demo.html │ └── stylesheet.css ├── images │ ├── banner │ │ ├── animated-bg.mp4 │ │ ├── coins.svg │ │ ├── colortunnel.png │ │ ├── eggCrack.svg │ │ ├── eggplant.svg │ │ ├── fanciesBack.png │ │ ├── fanciesFront.png │ │ ├── fanciesMid.png │ │ ├── games.svg │ │ ├── gift.svg │ │ └── puzzles.svg │ ├── catalogue │ │ └── catalogue-bg.jpg │ ├── counter │ │ ├── game.svg │ │ ├── logo-kv.svg │ │ └── offer.svg │ ├── cryptokitties │ │ ├── cryptokitties-1.svg │ │ ├── cryptokitties-2.svg │ │ ├── cryptokitties-3.svg │ │ ├── cryptokitties-4.svg │ │ └── cryptokitties-5.svg │ ├── favicon │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── favicon.ico │ ├── icons │ │ ├── icon-discord-white.svg │ │ ├── icon-message.svg │ │ ├── normal.png │ │ ├── paw.svg │ │ └── tag.svg │ ├── introduction │ │ └── kitty-eth.svg │ ├── learn │ │ ├── breeding-kitties.svg │ │ └── learn-image.png │ ├── loader │ │ └── ether-diamond.gif │ ├── logo │ │ ├── logo-hover.gif │ │ └── logo.svg │ ├── pattern │ │ ├── bgpattern.svg │ │ └── pattern-tile.svg │ └── videos │ │ └── heart-animation.mp4 ├── js │ ├── jquery-1.12.4.min.js │ └── script.js ├── plugins │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ └── venobox │ │ ├── css │ │ └── venobox.min.css │ │ └── js │ │ └── venobox.min.js └── scss │ ├── abstracts │ ├── _extend.scss │ ├── _function.scss │ ├── _mixin.scss │ └── _variable.scss │ ├── base │ ├── _common.scss │ └── _typography.scss │ ├── components │ ├── _buttons.scss │ └── _modal.scss │ ├── layout │ ├── _footer.scss │ └── _header.scss │ ├── sections │ ├── _about.scss │ ├── _banner.scss │ ├── _catalogue.scss │ ├── _learn.scss │ └── _products.scss │ └── style.scss ├── buy.html ├── history.html ├── index.html ├── mint.html └── pre-sale.html /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/css/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/css/style.css.map -------------------------------------------------------------------------------- /assets/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/css/style.min.css -------------------------------------------------------------------------------- /assets/css/style.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/css/style.min.css.map -------------------------------------------------------------------------------- /assets/fonts/Calibre-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Black.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Black.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Black.woff2 -------------------------------------------------------------------------------- /assets/fonts/Calibre-BlackItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-BlackItalic.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-BlackItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-BlackItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Calibre-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Bold.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Bold.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Calibre-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-BoldItalic.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-BoldItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-BoldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Calibre-Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Light.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Light.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Light.woff2 -------------------------------------------------------------------------------- /assets/fonts/Calibre-LightItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-LightItalic.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-LightItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-LightItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Calibre-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Medium.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Medium.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Medium.woff2 -------------------------------------------------------------------------------- /assets/fonts/Calibre-MediumItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-MediumItalic.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-MediumItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-MediumItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Calibre-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Regular.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Regular.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/Calibre-RegularItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-RegularItalic.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-RegularItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-RegularItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-RegularItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-RegularItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-RegularItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-RegularItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Calibre-Semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Semibold.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Semibold.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Semibold.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-Semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Semibold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Calibre-SemiboldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-SemiboldItalic.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-SemiboldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-SemiboldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-SemiboldItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-SemiboldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-SemiboldItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Calibre-Thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Thin.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Thin.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-Thin.woff2 -------------------------------------------------------------------------------- /assets/fonts/Calibre-ThinItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-ThinItalic.eot -------------------------------------------------------------------------------- /assets/fonts/Calibre-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Calibre-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-ThinItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Calibre-ThinItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/Calibre-ThinItalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/demo.html -------------------------------------------------------------------------------- /assets/fonts/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/fonts/stylesheet.css -------------------------------------------------------------------------------- /assets/images/banner/animated-bg.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/banner/animated-bg.mp4 -------------------------------------------------------------------------------- /assets/images/banner/coins.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/banner/coins.svg -------------------------------------------------------------------------------- /assets/images/banner/colortunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/banner/colortunnel.png -------------------------------------------------------------------------------- /assets/images/banner/eggCrack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/banner/eggCrack.svg -------------------------------------------------------------------------------- /assets/images/banner/eggplant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/banner/eggplant.svg -------------------------------------------------------------------------------- /assets/images/banner/fanciesBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/banner/fanciesBack.png -------------------------------------------------------------------------------- /assets/images/banner/fanciesFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/banner/fanciesFront.png -------------------------------------------------------------------------------- /assets/images/banner/fanciesMid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/banner/fanciesMid.png -------------------------------------------------------------------------------- /assets/images/banner/games.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/banner/games.svg -------------------------------------------------------------------------------- /assets/images/banner/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/banner/gift.svg -------------------------------------------------------------------------------- /assets/images/banner/puzzles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/banner/puzzles.svg -------------------------------------------------------------------------------- /assets/images/catalogue/catalogue-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/catalogue/catalogue-bg.jpg -------------------------------------------------------------------------------- /assets/images/counter/game.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/counter/game.svg -------------------------------------------------------------------------------- /assets/images/counter/logo-kv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/counter/logo-kv.svg -------------------------------------------------------------------------------- /assets/images/counter/offer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/counter/offer.svg -------------------------------------------------------------------------------- /assets/images/cryptokitties/cryptokitties-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/cryptokitties/cryptokitties-1.svg -------------------------------------------------------------------------------- /assets/images/cryptokitties/cryptokitties-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/cryptokitties/cryptokitties-2.svg -------------------------------------------------------------------------------- /assets/images/cryptokitties/cryptokitties-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/cryptokitties/cryptokitties-3.svg -------------------------------------------------------------------------------- /assets/images/cryptokitties/cryptokitties-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/cryptokitties/cryptokitties-4.svg -------------------------------------------------------------------------------- /assets/images/cryptokitties/cryptokitties-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/cryptokitties/cryptokitties-5.svg -------------------------------------------------------------------------------- /assets/images/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /assets/images/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /assets/images/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/images/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /assets/images/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /assets/images/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/favicon/favicon.ico -------------------------------------------------------------------------------- /assets/images/icons/icon-discord-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/icons/icon-discord-white.svg -------------------------------------------------------------------------------- /assets/images/icons/icon-message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/icons/icon-message.svg -------------------------------------------------------------------------------- /assets/images/icons/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/icons/normal.png -------------------------------------------------------------------------------- /assets/images/icons/paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/icons/paw.svg -------------------------------------------------------------------------------- /assets/images/icons/tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/icons/tag.svg -------------------------------------------------------------------------------- /assets/images/introduction/kitty-eth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/introduction/kitty-eth.svg -------------------------------------------------------------------------------- /assets/images/learn/breeding-kitties.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/learn/breeding-kitties.svg -------------------------------------------------------------------------------- /assets/images/learn/learn-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/learn/learn-image.png -------------------------------------------------------------------------------- /assets/images/loader/ether-diamond.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/loader/ether-diamond.gif -------------------------------------------------------------------------------- /assets/images/logo/logo-hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/logo/logo-hover.gif -------------------------------------------------------------------------------- /assets/images/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/logo/logo.svg -------------------------------------------------------------------------------- /assets/images/pattern/bgpattern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/pattern/bgpattern.svg -------------------------------------------------------------------------------- /assets/images/pattern/pattern-tile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/pattern/pattern-tile.svg -------------------------------------------------------------------------------- /assets/images/videos/heart-animation.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/images/videos/heart-animation.mp4 -------------------------------------------------------------------------------- /assets/js/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/js/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/js/script.js -------------------------------------------------------------------------------- /assets/plugins/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/plugins/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/plugins/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/plugins/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /assets/plugins/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/plugins/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/plugins/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/plugins/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /assets/plugins/venobox/css/venobox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/plugins/venobox/css/venobox.min.css -------------------------------------------------------------------------------- /assets/plugins/venobox/js/venobox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/plugins/venobox/js/venobox.min.js -------------------------------------------------------------------------------- /assets/scss/abstracts/_extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/abstracts/_extend.scss -------------------------------------------------------------------------------- /assets/scss/abstracts/_function.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/abstracts/_function.scss -------------------------------------------------------------------------------- /assets/scss/abstracts/_mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/abstracts/_mixin.scss -------------------------------------------------------------------------------- /assets/scss/abstracts/_variable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/abstracts/_variable.scss -------------------------------------------------------------------------------- /assets/scss/base/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/base/_common.scss -------------------------------------------------------------------------------- /assets/scss/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/base/_typography.scss -------------------------------------------------------------------------------- /assets/scss/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/components/_buttons.scss -------------------------------------------------------------------------------- /assets/scss/components/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/components/_modal.scss -------------------------------------------------------------------------------- /assets/scss/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/layout/_footer.scss -------------------------------------------------------------------------------- /assets/scss/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/layout/_header.scss -------------------------------------------------------------------------------- /assets/scss/sections/_about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/sections/_about.scss -------------------------------------------------------------------------------- /assets/scss/sections/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/sections/_banner.scss -------------------------------------------------------------------------------- /assets/scss/sections/_catalogue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/sections/_catalogue.scss -------------------------------------------------------------------------------- /assets/scss/sections/_learn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/sections/_learn.scss -------------------------------------------------------------------------------- /assets/scss/sections/_products.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/sections/_products.scss -------------------------------------------------------------------------------- /assets/scss/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/assets/scss/style.scss -------------------------------------------------------------------------------- /buy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/buy.html -------------------------------------------------------------------------------- /history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/history.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/index.html -------------------------------------------------------------------------------- /mint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/mint.html -------------------------------------------------------------------------------- /pre-sale.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Developer-Zahid/cryptokitties/HEAD/pre-sale.html --------------------------------------------------------------------------------