├── source ├── images │ ├── logo.png │ ├── user-1.jpg │ ├── user-2.jpg │ ├── user-3.jpg │ ├── blog │ │ ├── post-1.jpg │ │ ├── post-2.jpg │ │ ├── post-3.jpg │ │ ├── post-4.jpg │ │ ├── post-5.jpg │ │ └── post-6.jpg │ ├── github │ │ ├── blog.png │ │ ├── about.png │ │ ├── contact.png │ │ ├── homepage.png │ │ ├── portfolio.png │ │ └── kross-homepage.gif │ ├── icons │ │ ├── plan.png │ │ ├── print.png │ │ └── design.png │ ├── about │ │ ├── author.jpg │ │ └── signature.png │ ├── progress-wave.png │ ├── team │ │ ├── member-1.png │ │ ├── member-2.png │ │ └── member-3.png │ ├── backgrounds │ │ ├── map.png │ │ ├── bg-dots.png │ │ ├── team-bg.png │ │ └── education-bg.png │ ├── portfolio │ │ ├── item-1.png │ │ ├── item-2.png │ │ ├── item-3.png │ │ ├── item-4.png │ │ ├── item-5.png │ │ ├── item-6.png │ │ ├── item-7.png │ │ └── item-8.png │ ├── experience │ │ ├── icon-1.png │ │ ├── icon-2.png │ │ └── icon-3.png │ ├── illustrations │ │ ├── leaf-bg.png │ │ ├── dots-cyan.png │ │ ├── leaf-cyan.png │ │ ├── leaf-pink.png │ │ ├── page-title.png │ │ ├── dots-group-v.png │ │ ├── dots-orange.png │ │ ├── leaf-bg-top.png │ │ ├── leaf-cyan-2.png │ │ ├── leaf-cyan-lg.png │ │ ├── leaf-orange.png │ │ ├── leaf-yellow.png │ │ ├── dots-group-cyan.png │ │ ├── dots-group-sm.png │ │ ├── leaf-pink-round.png │ │ └── dots-group-orange.png │ ├── testimonial │ │ └── client-1.png │ └── clients-logo │ │ ├── client-logo-1.png │ │ ├── client-logo-2.png │ │ ├── client-logo-3.png │ │ ├── client-logo-4.png │ │ └── client-logo-5.png ├── plugins │ ├── slick │ │ ├── ajax-loader.gif │ │ ├── fonts │ │ │ ├── slick.eot │ │ │ ├── slick.ttf │ │ │ ├── slick.woff │ │ │ └── slick.svg │ │ └── slick.css │ └── themify-icons │ │ ├── fonts │ │ ├── themify.eot │ │ ├── themify.ttf │ │ └── themify.woff │ │ └── themify-icons.css ├── partials │ ├── footer.htm │ ├── header.htm │ └── blocks │ │ ├── navigation.htm │ │ └── footer.htm ├── scss │ ├── _variables.scss │ ├── _mixins.scss │ ├── templates │ │ ├── _navigation.scss │ │ ├── _blog.scss │ │ ├── _hero-area.scss │ │ ├── _about.scss │ │ ├── _portfolio.scss │ │ └── _homepage.scss │ ├── style.scss │ ├── _typography.scss │ ├── _buttons.scss │ └── _common.scss ├── contact.html ├── js │ └── script.js ├── about.html ├── blog.html ├── portfolio.html └── blog-single.html ├── theme ├── images │ ├── logo.png │ ├── user-1.jpg │ ├── user-2.jpg │ ├── user-3.jpg │ ├── icons │ │ ├── plan.png │ │ ├── design.png │ │ └── print.png │ ├── about │ │ ├── author.jpg │ │ └── signature.png │ ├── blog │ │ ├── post-1.jpg │ │ ├── post-2.jpg │ │ ├── post-3.jpg │ │ ├── post-4.jpg │ │ ├── post-5.jpg │ │ └── post-6.jpg │ ├── github │ │ ├── about.png │ │ ├── blog.png │ │ ├── contact.png │ │ ├── homepage.png │ │ ├── portfolio.png │ │ └── kross-homepage.gif │ ├── backgrounds │ │ ├── map.png │ │ ├── bg-dots.png │ │ ├── team-bg.png │ │ └── education-bg.png │ ├── progress-wave.png │ ├── team │ │ ├── member-1.png │ │ ├── member-2.png │ │ └── member-3.png │ ├── experience │ │ ├── icon-1.png │ │ ├── icon-2.png │ │ └── icon-3.png │ ├── portfolio │ │ ├── item-1.png │ │ ├── item-2.png │ │ ├── item-3.png │ │ ├── item-4.png │ │ ├── item-5.png │ │ ├── item-6.png │ │ ├── item-7.png │ │ └── item-8.png │ ├── testimonial │ │ └── client-1.png │ ├── illustrations │ │ ├── leaf-bg.png │ │ ├── dots-cyan.png │ │ ├── dots-orange.png │ │ ├── leaf-bg-top.png │ │ ├── leaf-cyan-2.png │ │ ├── leaf-cyan.png │ │ ├── leaf-orange.png │ │ ├── leaf-pink.png │ │ ├── leaf-yellow.png │ │ ├── page-title.png │ │ ├── dots-group-sm.png │ │ ├── dots-group-v.png │ │ ├── leaf-cyan-lg.png │ │ ├── dots-group-cyan.png │ │ ├── leaf-pink-round.png │ │ └── dots-group-orange.png │ └── clients-logo │ │ ├── client-logo-1.png │ │ ├── client-logo-2.png │ │ ├── client-logo-3.png │ │ ├── client-logo-4.png │ │ └── client-logo-5.png ├── plugins │ ├── slick │ │ ├── ajax-loader.gif │ │ ├── fonts │ │ │ ├── slick.eot │ │ │ ├── slick.ttf │ │ │ ├── slick.woff │ │ │ └── slick.svg │ │ └── slick.css │ └── themify-icons │ │ ├── fonts │ │ ├── themify.eot │ │ ├── themify.ttf │ │ └── themify.woff │ │ └── themify-icons.css ├── js │ └── script.js ├── contact.html ├── about.html ├── blog.html ├── portfolio.html └── blog-single.html ├── .gitignore ├── .editorconfig ├── netlify.toml ├── package.json ├── LICENSE ├── .jshintrc ├── README.md └── gulpfile.js /source/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/logo.png -------------------------------------------------------------------------------- /theme/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/logo.png -------------------------------------------------------------------------------- /source/images/user-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/user-1.jpg -------------------------------------------------------------------------------- /source/images/user-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/user-2.jpg -------------------------------------------------------------------------------- /source/images/user-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/user-3.jpg -------------------------------------------------------------------------------- /theme/images/user-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/user-1.jpg -------------------------------------------------------------------------------- /theme/images/user-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/user-2.jpg -------------------------------------------------------------------------------- /theme/images/user-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/user-3.jpg -------------------------------------------------------------------------------- /theme/images/icons/plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/icons/plan.png -------------------------------------------------------------------------------- /source/images/blog/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/blog/post-1.jpg -------------------------------------------------------------------------------- /source/images/blog/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/blog/post-2.jpg -------------------------------------------------------------------------------- /source/images/blog/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/blog/post-3.jpg -------------------------------------------------------------------------------- /source/images/blog/post-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/blog/post-4.jpg -------------------------------------------------------------------------------- /source/images/blog/post-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/blog/post-5.jpg -------------------------------------------------------------------------------- /source/images/blog/post-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/blog/post-6.jpg -------------------------------------------------------------------------------- /source/images/github/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/github/blog.png -------------------------------------------------------------------------------- /source/images/icons/plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/icons/plan.png -------------------------------------------------------------------------------- /source/images/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/icons/print.png -------------------------------------------------------------------------------- /theme/images/about/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/about/author.jpg -------------------------------------------------------------------------------- /theme/images/blog/post-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/blog/post-1.jpg -------------------------------------------------------------------------------- /theme/images/blog/post-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/blog/post-2.jpg -------------------------------------------------------------------------------- /theme/images/blog/post-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/blog/post-3.jpg -------------------------------------------------------------------------------- /theme/images/blog/post-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/blog/post-4.jpg -------------------------------------------------------------------------------- /theme/images/blog/post-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/blog/post-5.jpg -------------------------------------------------------------------------------- /theme/images/blog/post-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/blog/post-6.jpg -------------------------------------------------------------------------------- /theme/images/github/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/github/about.png -------------------------------------------------------------------------------- /theme/images/github/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/github/blog.png -------------------------------------------------------------------------------- /theme/images/icons/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/icons/design.png -------------------------------------------------------------------------------- /theme/images/icons/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/icons/print.png -------------------------------------------------------------------------------- /source/images/about/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/about/author.jpg -------------------------------------------------------------------------------- /source/images/github/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/github/about.png -------------------------------------------------------------------------------- /source/images/github/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/github/contact.png -------------------------------------------------------------------------------- /source/images/icons/design.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/icons/design.png -------------------------------------------------------------------------------- /source/images/progress-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/progress-wave.png -------------------------------------------------------------------------------- /source/images/team/member-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/team/member-1.png -------------------------------------------------------------------------------- /source/images/team/member-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/team/member-2.png -------------------------------------------------------------------------------- /source/images/team/member-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/team/member-3.png -------------------------------------------------------------------------------- /theme/images/about/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/about/signature.png -------------------------------------------------------------------------------- /theme/images/backgrounds/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/backgrounds/map.png -------------------------------------------------------------------------------- /theme/images/github/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/github/contact.png -------------------------------------------------------------------------------- /theme/images/github/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/github/homepage.png -------------------------------------------------------------------------------- /theme/images/progress-wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/progress-wave.png -------------------------------------------------------------------------------- /theme/images/team/member-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/team/member-1.png -------------------------------------------------------------------------------- /theme/images/team/member-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/team/member-2.png -------------------------------------------------------------------------------- /theme/images/team/member-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/team/member-3.png -------------------------------------------------------------------------------- /source/images/about/signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/about/signature.png -------------------------------------------------------------------------------- /source/images/backgrounds/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/backgrounds/map.png -------------------------------------------------------------------------------- /source/images/github/homepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/github/homepage.png -------------------------------------------------------------------------------- /source/images/github/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/github/portfolio.png -------------------------------------------------------------------------------- /source/images/portfolio/item-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/portfolio/item-1.png -------------------------------------------------------------------------------- /source/images/portfolio/item-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/portfolio/item-2.png -------------------------------------------------------------------------------- /source/images/portfolio/item-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/portfolio/item-3.png -------------------------------------------------------------------------------- /source/images/portfolio/item-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/portfolio/item-4.png -------------------------------------------------------------------------------- /source/images/portfolio/item-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/portfolio/item-5.png -------------------------------------------------------------------------------- /source/images/portfolio/item-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/portfolio/item-6.png -------------------------------------------------------------------------------- /source/images/portfolio/item-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/portfolio/item-7.png -------------------------------------------------------------------------------- /source/images/portfolio/item-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/portfolio/item-8.png -------------------------------------------------------------------------------- /theme/images/experience/icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/experience/icon-1.png -------------------------------------------------------------------------------- /theme/images/experience/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/experience/icon-2.png -------------------------------------------------------------------------------- /theme/images/experience/icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/experience/icon-3.png -------------------------------------------------------------------------------- /theme/images/github/portfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/github/portfolio.png -------------------------------------------------------------------------------- /theme/images/portfolio/item-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/portfolio/item-1.png -------------------------------------------------------------------------------- /theme/images/portfolio/item-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/portfolio/item-2.png -------------------------------------------------------------------------------- /theme/images/portfolio/item-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/portfolio/item-3.png -------------------------------------------------------------------------------- /theme/images/portfolio/item-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/portfolio/item-4.png -------------------------------------------------------------------------------- /theme/images/portfolio/item-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/portfolio/item-5.png -------------------------------------------------------------------------------- /theme/images/portfolio/item-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/portfolio/item-6.png -------------------------------------------------------------------------------- /theme/images/portfolio/item-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/portfolio/item-7.png -------------------------------------------------------------------------------- /theme/images/portfolio/item-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/portfolio/item-8.png -------------------------------------------------------------------------------- /source/images/backgrounds/bg-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/backgrounds/bg-dots.png -------------------------------------------------------------------------------- /source/images/backgrounds/team-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/backgrounds/team-bg.png -------------------------------------------------------------------------------- /source/images/experience/icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/experience/icon-1.png -------------------------------------------------------------------------------- /source/images/experience/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/experience/icon-2.png -------------------------------------------------------------------------------- /source/images/experience/icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/experience/icon-3.png -------------------------------------------------------------------------------- /source/plugins/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/plugins/slick/ajax-loader.gif -------------------------------------------------------------------------------- /source/plugins/slick/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/plugins/slick/fonts/slick.eot -------------------------------------------------------------------------------- /source/plugins/slick/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/plugins/slick/fonts/slick.ttf -------------------------------------------------------------------------------- /source/plugins/slick/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/plugins/slick/fonts/slick.woff -------------------------------------------------------------------------------- /theme/images/backgrounds/bg-dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/backgrounds/bg-dots.png -------------------------------------------------------------------------------- /theme/images/backgrounds/team-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/backgrounds/team-bg.png -------------------------------------------------------------------------------- /theme/images/testimonial/client-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/testimonial/client-1.png -------------------------------------------------------------------------------- /theme/plugins/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/plugins/slick/ajax-loader.gif -------------------------------------------------------------------------------- /theme/plugins/slick/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/plugins/slick/fonts/slick.eot -------------------------------------------------------------------------------- /theme/plugins/slick/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/plugins/slick/fonts/slick.ttf -------------------------------------------------------------------------------- /theme/plugins/slick/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/plugins/slick/fonts/slick.woff -------------------------------------------------------------------------------- /source/images/github/kross-homepage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/github/kross-homepage.gif -------------------------------------------------------------------------------- /source/images/illustrations/leaf-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/leaf-bg.png -------------------------------------------------------------------------------- /source/images/testimonial/client-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/testimonial/client-1.png -------------------------------------------------------------------------------- /theme/images/github/kross-homepage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/github/kross-homepage.gif -------------------------------------------------------------------------------- /theme/images/illustrations/leaf-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/leaf-bg.png -------------------------------------------------------------------------------- /source/images/backgrounds/education-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/backgrounds/education-bg.png -------------------------------------------------------------------------------- /source/images/illustrations/dots-cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/dots-cyan.png -------------------------------------------------------------------------------- /source/images/illustrations/leaf-cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/leaf-cyan.png -------------------------------------------------------------------------------- /source/images/illustrations/leaf-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/leaf-pink.png -------------------------------------------------------------------------------- /source/images/illustrations/page-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/page-title.png -------------------------------------------------------------------------------- /theme/images/backgrounds/education-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/backgrounds/education-bg.png -------------------------------------------------------------------------------- /theme/images/illustrations/dots-cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/dots-cyan.png -------------------------------------------------------------------------------- /theme/images/illustrations/dots-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/dots-orange.png -------------------------------------------------------------------------------- /theme/images/illustrations/leaf-bg-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/leaf-bg-top.png -------------------------------------------------------------------------------- /theme/images/illustrations/leaf-cyan-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/leaf-cyan-2.png -------------------------------------------------------------------------------- /theme/images/illustrations/leaf-cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/leaf-cyan.png -------------------------------------------------------------------------------- /theme/images/illustrations/leaf-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/leaf-orange.png -------------------------------------------------------------------------------- /theme/images/illustrations/leaf-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/leaf-pink.png -------------------------------------------------------------------------------- /theme/images/illustrations/leaf-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/leaf-yellow.png -------------------------------------------------------------------------------- /theme/images/illustrations/page-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/page-title.png -------------------------------------------------------------------------------- /source/images/clients-logo/client-logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/clients-logo/client-logo-1.png -------------------------------------------------------------------------------- /source/images/clients-logo/client-logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/clients-logo/client-logo-2.png -------------------------------------------------------------------------------- /source/images/clients-logo/client-logo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/clients-logo/client-logo-3.png -------------------------------------------------------------------------------- /source/images/clients-logo/client-logo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/clients-logo/client-logo-4.png -------------------------------------------------------------------------------- /source/images/clients-logo/client-logo-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/clients-logo/client-logo-5.png -------------------------------------------------------------------------------- /source/images/illustrations/dots-group-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/dots-group-v.png -------------------------------------------------------------------------------- /source/images/illustrations/dots-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/dots-orange.png -------------------------------------------------------------------------------- /source/images/illustrations/leaf-bg-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/leaf-bg-top.png -------------------------------------------------------------------------------- /source/images/illustrations/leaf-cyan-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/leaf-cyan-2.png -------------------------------------------------------------------------------- /source/images/illustrations/leaf-cyan-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/leaf-cyan-lg.png -------------------------------------------------------------------------------- /source/images/illustrations/leaf-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/leaf-orange.png -------------------------------------------------------------------------------- /source/images/illustrations/leaf-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/leaf-yellow.png -------------------------------------------------------------------------------- /theme/images/clients-logo/client-logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/clients-logo/client-logo-1.png -------------------------------------------------------------------------------- /theme/images/clients-logo/client-logo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/clients-logo/client-logo-2.png -------------------------------------------------------------------------------- /theme/images/clients-logo/client-logo-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/clients-logo/client-logo-3.png -------------------------------------------------------------------------------- /theme/images/clients-logo/client-logo-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/clients-logo/client-logo-4.png -------------------------------------------------------------------------------- /theme/images/clients-logo/client-logo-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/clients-logo/client-logo-5.png -------------------------------------------------------------------------------- /theme/images/illustrations/dots-group-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/dots-group-sm.png -------------------------------------------------------------------------------- /theme/images/illustrations/dots-group-v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/dots-group-v.png -------------------------------------------------------------------------------- /theme/images/illustrations/leaf-cyan-lg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/leaf-cyan-lg.png -------------------------------------------------------------------------------- /source/images/illustrations/dots-group-cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/dots-group-cyan.png -------------------------------------------------------------------------------- /source/images/illustrations/dots-group-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/dots-group-sm.png -------------------------------------------------------------------------------- /source/images/illustrations/leaf-pink-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/leaf-pink-round.png -------------------------------------------------------------------------------- /source/plugins/themify-icons/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/plugins/themify-icons/fonts/themify.eot -------------------------------------------------------------------------------- /source/plugins/themify-icons/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/plugins/themify-icons/fonts/themify.ttf -------------------------------------------------------------------------------- /source/plugins/themify-icons/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/plugins/themify-icons/fonts/themify.woff -------------------------------------------------------------------------------- /theme/images/illustrations/dots-group-cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/dots-group-cyan.png -------------------------------------------------------------------------------- /theme/images/illustrations/leaf-pink-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/leaf-pink-round.png -------------------------------------------------------------------------------- /theme/plugins/themify-icons/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/plugins/themify-icons/fonts/themify.eot -------------------------------------------------------------------------------- /theme/plugins/themify-icons/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/plugins/themify-icons/fonts/themify.ttf -------------------------------------------------------------------------------- /theme/plugins/themify-icons/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/plugins/themify-icons/fonts/themify.woff -------------------------------------------------------------------------------- /source/images/illustrations/dots-group-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/source/images/illustrations/dots-group-orange.png -------------------------------------------------------------------------------- /theme/images/illustrations/dots-group-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/kross-bulma/HEAD/theme/images/illustrations/dots-group-orange.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db 2 | .DS_Store 3 | .dist 4 | .tmp 5 | .sass-cache 6 | npm-debug.log 7 | node_modules 8 | package-lock.json 9 | yarn.lock 10 | netlify -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | ; https://editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = 2 9 | indent_style = space 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true 12 | 13 | [*.md] 14 | trim_trailing_whitespace = false -------------------------------------------------------------------------------- /source/partials/footer.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build] 2 | publish = "theme" 3 | command = "npm run build" 4 | 5 | [[headers]] 6 | for = "/*" # This defines which paths this specific [[headers]] block will cover. 7 | 8 | [headers.values] 9 | X-Frame-Options = "DENY" 10 | X-XSS-Protection = "1; mode=block" 11 | Referrer-Policy = "same-origin" 12 | Strict-Transport-Security = "max-age=31536000; includeSubDomains; preload" 13 | -------------------------------------------------------------------------------- /source/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | // Color Variables 2 | $primary-color: #41228e; 3 | $secondary-color: #2bfdff; 4 | $text-color: #4c4c4c; 5 | $text-color-dark: #000; 6 | $text-color-light: #999999; 7 | $body-color: #fff; 8 | $border-color: #c7c7c7; 9 | $black: #000; 10 | $white: #fff; 11 | $gray: #eaeaea; 12 | 13 | // Font Variables 14 | $primary-font: 'Roboto', sans-serif; 15 | $secondary-font: 'Playfair Display', serif; 16 | $icon-font: 'themify'; -------------------------------------------------------------------------------- /source/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin mobile-xs{ 2 | @media(max-width:400px){ 3 | @content; 4 | } 5 | } 6 | @mixin mobile{ 7 | @media(max-width:575px){ 8 | @content; 9 | } 10 | } 11 | @mixin tablet{ 12 | @media(max-width:767px){ 13 | @content; 14 | } 15 | } 16 | @mixin desktop{ 17 | @media(max-width:991px){ 18 | @content; 19 | } 20 | } 21 | @mixin desktop-lg{ 22 | @media(max-width:1200px){ 23 | @content; 24 | } 25 | } 26 | 27 | @mixin size($size){ 28 | width: $size; height: $size; 29 | } -------------------------------------------------------------------------------- /source/scss/templates/_navigation.scss: -------------------------------------------------------------------------------- 1 | .navbar { 2 | padding: 40px 130px; 3 | transition: .3s ease; 4 | background: transparent !important; 5 | 6 | &.nav-bg { 7 | background-color: $primary-color !important; 8 | padding: 15px 100px; 9 | 10 | @include desktop { 11 | padding: 15px 20px; 12 | } 13 | } 14 | 15 | @include desktop { 16 | padding: 20px; 17 | background: $primary-color !important; 18 | } 19 | 20 | &-item { 21 | text-transform: uppercase; 22 | &:hover{ 23 | background-color: transparent !important; 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /source/scss/templates/_blog.scss: -------------------------------------------------------------------------------- 1 | .card-lg { 2 | flex-direction: row-reverse; 3 | align-items: center; 4 | 5 | @include desktop { 6 | flex-direction: column; 7 | } 8 | } 9 | 10 | blockquote { 11 | display: inline-block; 12 | padding: 10px 20px; 13 | background: $gray; 14 | border-left: 2px solid $primary-color; 15 | font-style: italic; 16 | font-size: 22px; 17 | } 18 | 19 | .content { 20 | * { 21 | margin-bottom: 20px; 22 | } 23 | 24 | strong { 25 | font-family: $secondary-font; 26 | font-size: 22px; 27 | font-weight: normal; 28 | color: $text-color-dark; 29 | display: inherit; 30 | line-height: 1.5; 31 | } 32 | } -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "kross-bulma", 3 | "version": "1.0.0", 4 | "description": "kross free bulma portfolio template", 5 | "author": "Themefisher", 6 | "license": "MIT", 7 | "scripts": { 8 | "dev": "gulp", 9 | "build": "gulp build" 10 | }, 11 | "dependencies": { 12 | "browser-sync": "^2.27.10", 13 | "gulp": "^4.0.2", 14 | "gulp-autoprefixer": "^8.0.0", 15 | "gulp-file-include": "^2.3.0", 16 | "gulp-header-comment": "^0.10.0", 17 | "gulp-jshint": "^2.1.0", 18 | "gulp-rimraf": "^1.0.0", 19 | "gulp-sass": "^5.1.0", 20 | "gulp-sourcemaps": "^3.0.0", 21 | "gulp-util": "^3.0.8", 22 | "jshint": "^2.13.4", 23 | "jshint-stylish": "^2.2.1", 24 | "sass": "^1.53.0" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /source/scss/style.scss: -------------------------------------------------------------------------------- 1 | /*!------------------------------------------------------------------ 2 | [MAIN STYLESHEET] 3 | 4 | PROJECT: Project Name 5 | VERSION: Versoin Number 6 | -------------------------------------------------------------------*/ 7 | 8 | /*------------------------------------------------------------------ 9 | [TABLE OF CONTENTS] 10 | -------------------------------------------------------------------*/ 11 | 12 | @import 'variables'; 13 | 14 | @import 'mixins'; 15 | 16 | @import 'typography'; 17 | 18 | @import 'buttons'; 19 | 20 | @import 'common'; 21 | 22 | @import 'templates/navigation'; 23 | 24 | @import 'templates/hero-area'; 25 | 26 | @import 'templates/homepage'; 27 | 28 | @import 'templates/blog'; 29 | 30 | @import 'templates/about'; 31 | 32 | @import 'templates/portfolio'; -------------------------------------------------------------------------------- /source/partials/header.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Kross | Portfolio Template 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /source/scss/templates/_hero-area.scss: -------------------------------------------------------------------------------- 1 | .hero-area { 2 | padding: 300px 0 200px; 3 | position: relative; 4 | @include tablet { 5 | padding: 250px 0 150px; 6 | overflow: hidden; 7 | } 8 | h1{ 9 | position: relative; 10 | z-index: 2; 11 | } 12 | } 13 | 14 | .layer { 15 | position: absolute; 16 | z-index: 1; 17 | } 18 | 19 | #l1 { 20 | bottom: 0; 21 | left: 0; 22 | } 23 | 24 | #l2 { 25 | top: 190px; 26 | left: -250px; 27 | } 28 | 29 | #l3 { 30 | top: 200px; 31 | left: 40%; 32 | } 33 | 34 | #l4 { 35 | top: 200px; 36 | right: 40%; 37 | } 38 | 39 | #l5 { 40 | top: 100px; 41 | right: -150px; 42 | } 43 | 44 | #l6 { 45 | bottom: -20px; 46 | left: 10%; 47 | } 48 | 49 | #l7 { 50 | bottom: 100px; 51 | left: 20%; 52 | } 53 | 54 | #l8 { 55 | bottom: 160px; 56 | right: 45%; 57 | } 58 | 59 | #l9 { 60 | bottom: 100px; 61 | right: -10px; 62 | } 63 | 64 | .layer-bg { 65 | position: absolute; 66 | bottom: 0; 67 | left: 0; 68 | } -------------------------------------------------------------------------------- /source/scss/templates/_about.scss: -------------------------------------------------------------------------------- 1 | .page-title-alt{ 2 | padding: 350px 0 70px; 3 | } 4 | 5 | .border-thick{ 6 | border: 10px solid; 7 | } 8 | 9 | .drag-lg-top{ 10 | margin-top: -230px; 11 | @include desktop { 12 | margin-top: 0; 13 | } 14 | } 15 | 16 | .page-title-alt{ 17 | .container{ 18 | position: relative; 19 | z-index: 1; 20 | } 21 | .bg-shape-1{ 22 | position: absolute; 23 | left: 0; 24 | top: 0; 25 | height: 100%; 26 | } 27 | .bg-shape-2{ 28 | position: absolute; 29 | left: 70px; 30 | top: 100px; 31 | } 32 | .bg-shape-3{ 33 | position: absolute; 34 | left: 30%; 35 | top: 50px; 36 | transform: rotate(180deg); 37 | } 38 | 39 | .bg-shape-4{ 40 | position: absolute; 41 | left: 100px; 42 | bottom: 100px; 43 | } 44 | 45 | .bg-shape-5{ 46 | position: absolute; 47 | left: 40%; 48 | bottom: -25px; 49 | } 50 | 51 | .bg-shape-6{ 52 | position: absolute; 53 | bottom: 100px; 54 | right: -100px; 55 | } 56 | } -------------------------------------------------------------------------------- /source/partials/blocks/navigation.htm: -------------------------------------------------------------------------------- 1 |
2 | 25 |
-------------------------------------------------------------------------------- /source/scss/_typography.scss: -------------------------------------------------------------------------------- 1 | /* typography */ 2 | @import url('https://fonts.googleapis.com/css?family=Playfair+Display:700|Roboto:400'); 3 | 4 | body { 5 | line-height: 1.2; 6 | font-family: $primary-font; 7 | -webkit-font-smoothing: antialiased; 8 | font-size: 15px; 9 | color: $text-color; 10 | } 11 | 12 | p, .paragraph { 13 | font-weight: 400; 14 | color: $text-color; 15 | font-size: 15px; 16 | line-height: 1.8; 17 | font-family: $primary-font; 18 | &-lg{ 19 | font-size: 22px; 20 | } 21 | } 22 | 23 | h1,h2,h3,h4,h5,h6 { 24 | color: $text-color-dark; 25 | font-family: $secondary-font; 26 | line-height: 1.2; 27 | } 28 | 29 | h1, .h1{ 30 | font-size: 80px; 31 | @include desktop { 32 | font-size: 65px; 33 | } 34 | } 35 | 36 | h2, .h2{ 37 | font-size: 60px; 38 | @include desktop { 39 | font-size: 50px; 40 | } 41 | } 42 | 43 | h3, .h3{ 44 | font-size: 40px; 45 | } 46 | 47 | h4, .h4{ 48 | font-size: 22px; 49 | } 50 | 51 | h5, .h5{ 52 | font-size: 18px; 53 | } 54 | 55 | h6, .h6{ 56 | font-size: 14px; 57 | } 58 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 - Present, Themefisher 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /source/scss/templates/_portfolio.scss: -------------------------------------------------------------------------------- 1 | .page-title { 2 | padding: 250px 0 150px; 3 | 4 | .container { 5 | position: relative; 6 | z-index: 1; 7 | } 8 | 9 | .bg-shape-1 { 10 | position: absolute; 11 | left: 0; 12 | bottom: 0; 13 | width: 100%; 14 | } 15 | 16 | .bg-shape-2 { 17 | position: absolute; 18 | left: -20px; 19 | top: -10px; 20 | } 21 | 22 | .bg-shape-3 { 23 | position: absolute; 24 | left: 10%; 25 | top: 100px; 26 | } 27 | 28 | .bg-shape-4 { 29 | position: absolute; 30 | left: 50%; 31 | top: -20px; 32 | } 33 | 34 | .bg-shape-5 { 35 | position: absolute; 36 | left: 90px; 37 | bottom: -50px; 38 | transform: rotate(180deg); 39 | } 40 | 41 | .bg-shape-6 { 42 | position: absolute; 43 | right: 20%; 44 | bottom: -20px; 45 | } 46 | 47 | .bg-shape-7 { 48 | position: absolute; 49 | right: -220px; 50 | bottom: -100px; 51 | } 52 | } 53 | 54 | .filter-controls { 55 | li { 56 | cursor: pointer; 57 | 58 | &.active { 59 | font-weight: bold; 60 | } 61 | } 62 | } -------------------------------------------------------------------------------- /source/contact.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | 3 | @@include('blocks/navigation.htm') 4 | 5 | 6 |
7 |
8 |
9 |

Contacts

10 |
11 |
12 | 13 | illustrations 14 | illustrations 15 | illustrations 16 | illustrations 17 | illustrations 18 | illustrations 19 | illustrations 20 |
21 | 22 | 23 | @@include('blocks/footer.htm') 24 | 25 | @@include('footer.htm') -------------------------------------------------------------------------------- /theme/plugins/slick/slick.css: -------------------------------------------------------------------------------- 1 | .slick-list,.slick-slider,.slick-track{position:relative;display:block}.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{top:0;left:0;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none} -------------------------------------------------------------------------------- /source/plugins/slick/slick.css: -------------------------------------------------------------------------------- 1 | .slick-list,.slick-slider,.slick-track{position:relative;display:block}.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{top:0;left:0;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none} -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "maxerr": 50, 3 | "bitwise": true, 4 | "camelcase": false, 5 | "curly": true, 6 | "eqeqeq": true, 7 | "forin": true, 8 | "freeze": true, 9 | "immed": true, 10 | "indent": 4, 11 | "latedef": true, 12 | "newcap": false, 13 | "noarg": true, 14 | "noempty": true, 15 | "nonbsp": true, 16 | "nonew": true, 17 | "plusplus": false, 18 | "quotmark": "double", 19 | "undef": true, 20 | "unused": false, 21 | "strict": true, 22 | "maxparams": false, 23 | "maxdepth": 4, 24 | "maxstatements": false, 25 | "maxcomplexity": false, 26 | "maxlen": 400, 27 | "browser": true, 28 | "devel": true, 29 | "asi": false, 30 | "boss": false, 31 | "debug": false, 32 | "eqnull": false, 33 | "es3": true, 34 | "es5": false, 35 | "esnext": true, 36 | "moz": false, 37 | 38 | "evil": true, 39 | "expr": true, 40 | "funcscope": false, 41 | "globalstrict": false, 42 | "iterator": false, 43 | "lastsemic": false, 44 | "laxbreak": false, 45 | "laxcomma": false, 46 | "loopfunc": true, 47 | "multistr": true, 48 | "noyield": false, 49 | "notypeof": false, 50 | "proto": false, 51 | "scripturl": false, 52 | "shadow": false, 53 | "sub": false, 54 | "supernew": false, 55 | "validthis": false, 56 | "globals": { 57 | "jQuery": false, 58 | "google": false, 59 | "$": false 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /source/scss/_buttons.scss: -------------------------------------------------------------------------------- 1 | /* Button style */ 2 | .button { 3 | font-size: 22px; 4 | font-family: $secondary-font; 5 | text-transform: capitalize; 6 | padding: 16px 44px; 7 | border-radius: 5px; 8 | font-weight: 600; 9 | border: 0; 10 | position: relative; 11 | z-index: 1; 12 | transition: .2s ease; 13 | 14 | &:focus { 15 | outline: 0; 16 | box-shadow: none !important; 17 | } 18 | 19 | &:active { 20 | box-shadow: none; 21 | } 22 | 23 | &.is-small { 24 | font-size: 15px; 25 | padding: 10px 30px; 26 | } 27 | 28 | &.is-extra-small { 29 | padding: 5px 10px; 30 | font-size: 15px; 31 | } 32 | 33 | &.is-primary { 34 | background-color: $primary-color; 35 | color: $white; 36 | 37 | &:active { 38 | background-color: lighten($color: $primary-color, $amount: 10) !important; 39 | } 40 | 41 | &:hover { 42 | background-color: lighten($color: $primary-color, $amount: 10); 43 | } 44 | 45 | &.focus, 46 | &.is-active { 47 | background-color: lighten($color: $primary-color, $amount: 10) !important; 48 | box-shadow: none !important; 49 | } 50 | } 51 | 52 | &.is-link { 53 | background-color: transparent; 54 | color: $primary-color; 55 | font-weight: bold; 56 | padding-left: 0; 57 | padding-right: 0; 58 | 59 | &:active, 60 | &:hover { 61 | color: $primary-color; 62 | background: transparent; 63 | } 64 | } 65 | } -------------------------------------------------------------------------------- /source/plugins/slick/fonts/slick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /theme/plugins/slick/fonts/slick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /source/partials/blocks/footer.htm: -------------------------------------------------------------------------------- 1 | 2 | 31 | 32 | 33 | 34 | 61 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Kross Free Bulma Portfolio Template 2 | 3 | ![kross](https://demo.themefisher.com/thumbnails/kross.png) 4 | 5 | 👉🏻[View Live Preview](https://demo.themefisher.com/kross-bulma/) 6 | 7 | 8 | ## Download And installation 9 | 10 | Download this template from [Github](https://github.com/themefisher/kross-bulma/archive/main.zip) 11 | 12 | 13 | ### Basic Usages 14 | 15 | After downloading the template, you can simply edit the HTML and CSS files from the `theme` folder. To preview the changes you make to the code, you can open the index.html file in your web browser. 16 | 17 | ### Advanced Usage 18 | 19 | For advanced usage, you have some prerequisites to install. Then you can run it on your localhost. You can view the package.json file to see which scripts are included. 20 | 21 | #### Install prerequisites (once for a machine) 22 | 23 | * **Node Installation:** [Install node js](https://nodejs.org/en/download/) 24 | * **Gulp Installation:** Install gulp globally from your terminal 25 | 26 | ``` 27 | npm install --global gulp-cli 28 | ``` 29 | 30 | Or visit the original [Gulp docs](https://gulpjs.com/docs/en/getting-started/quick-start) 31 | 32 | #### Local setup 33 | 34 | After successfully installing those dependencies, open this theme with any IDE [[VS Code](https://code.visualstudio.com/) recommended], and then open the internal terminal of IDM [vs code shortcut ctrl/cmd+\`] 35 | 36 | * Install dependencies 37 | 38 | ``` 39 | npm install 40 | ``` 41 | 42 | * Run locally 43 | 44 | ``` 45 | npm run dev 46 | ``` 47 | 48 | After that, it will open up a preview of the template in your default browser, watch for changes to source files, and live reload the browser when changes are saved. 49 | 50 | #### Production Build 51 | 52 | After finishing all the customization, you can create a production build by running this command. 53 | 54 | ``` 55 | npm run build 56 | ``` 57 | 58 | Now you get a `theme` folder that has all the changes you have made. you can use this folder as your main theme. 59 | 60 | 👉🏻 [visit documentation](https://docs.themefisher.com/kross-bulma/) 61 | 62 | 63 | ## Reporting Issues 64 | 65 | We use GitHub Issues as the official bug tracker for the kross-bulma Template. Please Search [existing issues](https://github.com/themefisher/kross-bulma/issues). It’s possible someone has already reported the same problem. 66 | If your problem or idea has not been addressed yet, feel free to [open a new issue](https://github.com/themefisher/kross-bulma/issues). 67 | 68 | 69 | ## Technical Support or Questions (Paid) 70 | 71 | If you have questions or need help integrating the product please [contact us](mailto:mehedi@themefisher.com) instead of opening an issue. 72 | 73 | 74 | ## License 75 | 76 | Copyright (c) 2016 - Present, Designed & Developed by [Themefisher](https://themefisher.com) 77 | 78 | **Code License:** Released under the [MIT](https://github.com/themefisher/kross-bulma/blob/main/LICENSE) license. 79 | 80 | **Image license:** The images are only for demonstration purposes. They have their license, we don't have permission to share those images. 81 | -------------------------------------------------------------------------------- /source/scss/templates/_homepage.scss: -------------------------------------------------------------------------------- 1 | /* skills */ 2 | .progress-wrapper { 3 | height: 130px; 4 | overflow: hidden; 5 | } 6 | 7 | .wave { 8 | position: absolute; 9 | width: 100%; 10 | height: 100%; 11 | 12 | &::before, 13 | &::after { 14 | content: ""; 15 | position: absolute; 16 | width: 800px; 17 | height: 800px; 18 | bottom: 0; 19 | left: 50%; 20 | background-color: rgba(255, 255, 255, .4); 21 | border-radius: 45%; 22 | transform: translateX(-50%) rotate(0); 23 | animation: rotate 6s linear infinite; 24 | z-index: 10; 25 | } 26 | 27 | &::after { 28 | border-radius: 47%; 29 | background-color: rgba(255, 255, 255, .9); 30 | transform: translateX(-50%) rotate(0); 31 | animation: rotate 10s linear -5s infinite; 32 | z-index: 20; 33 | } 34 | } 35 | 36 | @keyframes rotate { 37 | 50% { 38 | transform: translateX(-50%) rotate(180deg); 39 | } 40 | 41 | 100% { 42 | transform: translateX(-50%) rotate(360deg); 43 | } 44 | } 45 | 46 | /* /skills */ 47 | 48 | /* education */ 49 | .edu-bg-image { 50 | position: absolute; 51 | left: 0; 52 | top: -200px; 53 | } 54 | 55 | /* /education */ 56 | 57 | /* service */ 58 | .hover-bg-primary { 59 | transition: .3s ease; 60 | 61 | &:hover { 62 | background: $primary-color; 63 | 64 | * { 65 | color: $white; 66 | } 67 | } 68 | } 69 | 70 | .active-bg-primary { 71 | transition: .3s ease; 72 | background: $primary-color; 73 | 74 | * { 75 | color: $white; 76 | } 77 | } 78 | 79 | .hover-shadow{ 80 | transition: .2s ease; 81 | &:hover{ 82 | box-shadow: 0px 18px 40px 8px rgba(224, 241, 255, 0.54) !important; 83 | } 84 | } 85 | 86 | 87 | /* /service */ 88 | 89 | /* portfolio */ 90 | .hover-wrapper { 91 | overflow: hidden; 92 | 93 | img { 94 | transition: .3s ease; 95 | transform: scale(1.1); 96 | } 97 | 98 | &:hover { 99 | img { 100 | transform: scale(1); 101 | } 102 | 103 | .hover-overlay { 104 | opacity: 1; 105 | visibility: visible; 106 | } 107 | } 108 | } 109 | 110 | .hover-overlay { 111 | position: absolute; 112 | height: 100%; 113 | width: 100%; 114 | border-radius: inherit; 115 | top: 0; 116 | left: 0; 117 | background: rgba($color: $black, $alpha: .3); 118 | opacity: 0; 119 | visibility: hidden; 120 | transition: .3s ease; 121 | } 122 | 123 | .hover-content { 124 | position: absolute; 125 | top: 50%; 126 | transform: translateY(-50%); 127 | left: 0; 128 | right: 0; 129 | text-align: center; 130 | } 131 | 132 | /* /portfolio */ 133 | 134 | /* testimonial */ 135 | .testimonial-content { 136 | strong { 137 | color: $secondary-color; 138 | font-weight: normal; 139 | } 140 | } 141 | 142 | .testimonial-bg-shapes { 143 | .container { 144 | position: relative; 145 | z-index: 1; 146 | } 147 | 148 | .bg-map { 149 | position: absolute; 150 | left: 50%; 151 | top: 50%; 152 | transform: translate(-50%, -50%); 153 | } 154 | 155 | .bg-shape-1 { 156 | position: absolute; 157 | left: 100px; 158 | top: -50px; 159 | } 160 | 161 | .bg-shape-2 { 162 | position: absolute; 163 | right: 150px; 164 | top: 50px; 165 | } 166 | 167 | .bg-shape-3 { 168 | position: absolute; 169 | right: 50px; 170 | top: 200px; 171 | } 172 | 173 | .bg-shape-4 { 174 | position: absolute; 175 | left: 100px; 176 | bottom: 200px; 177 | } 178 | 179 | .bg-shape-5 { 180 | position: absolute; 181 | right: 200px; 182 | bottom: -50px; 183 | } 184 | } 185 | 186 | /* /testimonial */ 187 | 188 | /* footer */ 189 | .footer-section { 190 | padding-top: 200px; 191 | } 192 | 193 | .section-on-footer { 194 | margin-bottom: -250px; 195 | } 196 | 197 | .shadow-down { 198 | position: relative; 199 | 200 | &::before { 201 | position: absolute; 202 | content: ""; 203 | box-shadow: 0px 0px 80.75px 14.25px rgba(224, 241, 255, 0.34); 204 | height: 100%; 205 | width: 100%; 206 | left: 0; 207 | top: 0; 208 | z-index: -1; 209 | } 210 | } 211 | 212 | /* /footer */ -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | const sass = require("gulp-sass")(require("sass")); 4 | const gulp = require("gulp"); 5 | const gutil = require("gulp-util"); 6 | const sourcemaps = require("gulp-sourcemaps"); 7 | const fileinclude = require("gulp-file-include"); 8 | const autoprefixer = require("gulp-autoprefixer"); 9 | const bs = require("browser-sync").create(); 10 | const rimraf = require("rimraf"); 11 | const comments = require("gulp-header-comment"); 12 | const jshint = require("gulp-jshint"); 13 | 14 | var path = { 15 | src: { 16 | html: "source/*.html", 17 | others: "source/*.+(php|ico|png)", 18 | htminc: "source/partials/**/*.htm", 19 | incdir: "source/partials/", 20 | plugins: "source/plugins/**/*.*", 21 | js: "source/js/*.js", 22 | scss: "source/scss/**/*.scss", 23 | images: "source/images/**/*.+(png|jpg|gif|svg)", 24 | fonts: "source/fonts/**/*.+(eot|ttf|woff|woff2|otf)", 25 | }, 26 | build: { 27 | dir: "theme/", 28 | }, 29 | }; 30 | 31 | // HTML 32 | gulp.task("html:build", function () { 33 | return gulp 34 | .src(path.src.html) 35 | .pipe( 36 | fileinclude({ 37 | basepath: path.src.incdir, 38 | }) 39 | ) 40 | .pipe( 41 | comments(` 42 | WEBSITE: https://themefisher.com 43 | TWITTER: https://twitter.com/themefisher 44 | FACEBOOK: https://www.facebook.com/themefisher 45 | GITHUB: https://github.com/themefisher/ 46 | `) 47 | ) 48 | .pipe(gulp.dest(path.build.dir)) 49 | .pipe( 50 | bs.reload({ 51 | stream: true, 52 | }) 53 | ); 54 | }); 55 | 56 | // SCSS 57 | gulp.task("scss:build", function () { 58 | return gulp 59 | .src(path.src.scss) 60 | .pipe(sourcemaps.init()) 61 | .pipe( 62 | sass({ 63 | outputStyle: "expanded", 64 | }).on("error", sass.logError) 65 | ) 66 | .pipe(autoprefixer()) 67 | .pipe(sourcemaps.write("/")) 68 | .pipe( 69 | comments(` 70 | WEBSITE: https://themefisher.com 71 | TWITTER: https://twitter.com/themefisher 72 | FACEBOOK: https://www.facebook.com/themefisher 73 | GITHUB: https://github.com/themefisher/ 74 | `) 75 | ) 76 | .pipe(gulp.dest(path.build.dir + "css/")) 77 | .pipe( 78 | bs.reload({ 79 | stream: true, 80 | }) 81 | ); 82 | }); 83 | 84 | // Javascript 85 | gulp.task("js:build", function () { 86 | return gulp 87 | .src(path.src.js) 88 | .pipe(jshint("./.jshintrc")) 89 | .pipe(jshint.reporter("jshint-stylish")) 90 | .on("error", gutil.log) 91 | .pipe( 92 | comments(` 93 | WEBSITE: https://themefisher.com 94 | TWITTER: https://twitter.com/themefisher 95 | FACEBOOK: https://www.facebook.com/themefisher 96 | GITHUB: https://github.com/themefisher/ 97 | `) 98 | ) 99 | .pipe(gulp.dest(path.build.dir + "js/")) 100 | .pipe( 101 | bs.reload({ 102 | stream: true, 103 | }) 104 | ); 105 | }); 106 | 107 | // Images 108 | gulp.task("images:build", function () { 109 | return gulp 110 | .src(path.src.images) 111 | .pipe(gulp.dest(path.build.dir + "images/")) 112 | .pipe( 113 | bs.reload({ 114 | stream: true, 115 | }) 116 | ); 117 | }); 118 | 119 | // fonts 120 | gulp.task("fonts:build", function () { 121 | return gulp 122 | .src(path.src.fonts) 123 | .pipe(gulp.dest(path.build.dir + "fonts/")) 124 | .pipe( 125 | bs.reload({ 126 | stream: true, 127 | }) 128 | ); 129 | }); 130 | 131 | // Plugins 132 | gulp.task("plugins:build", function () { 133 | return gulp 134 | .src(path.src.plugins) 135 | .pipe(gulp.dest(path.build.dir + "plugins/")) 136 | .pipe( 137 | bs.reload({ 138 | stream: true, 139 | }) 140 | ); 141 | }); 142 | 143 | // Other files like favicon, php, sourcele-icon on root directory 144 | gulp.task("others:build", function () { 145 | return gulp.src(path.src.others).pipe(gulp.dest(path.build.dir)); 146 | }); 147 | 148 | // Clean Build Folder 149 | gulp.task("clean", function (cb) { 150 | rimraf("./theme", cb); 151 | }); 152 | 153 | // Watch Task 154 | gulp.task("watch:build", function () { 155 | gulp.watch(path.src.html, gulp.series("html:build")); 156 | gulp.watch(path.src.htminc, gulp.series("html:build")); 157 | gulp.watch(path.src.scss, gulp.series("scss:build")); 158 | gulp.watch(path.src.js, gulp.series("js:build")); 159 | gulp.watch(path.src.images, gulp.series("images:build")); 160 | gulp.watch(path.src.fonts, gulp.series("fonts:build")); 161 | gulp.watch(path.src.plugins, gulp.series("plugins:build")); 162 | }); 163 | 164 | // Dev Task 165 | gulp.task( 166 | "default", 167 | gulp.series( 168 | "clean", 169 | "html:build", 170 | "js:build", 171 | "scss:build", 172 | "images:build", 173 | "fonts:build", 174 | "plugins:build", 175 | "others:build", 176 | gulp.parallel("watch:build", function () { 177 | bs.init({ 178 | server: { 179 | baseDir: path.build.dir, 180 | }, 181 | }); 182 | }) 183 | ) 184 | ); 185 | 186 | // Build Task 187 | gulp.task( 188 | "build", 189 | gulp.series( 190 | "html:build", 191 | "js:build", 192 | "scss:build", 193 | "images:build", 194 | "fonts:build", 195 | "plugins:build" 196 | ) 197 | ); 198 | -------------------------------------------------------------------------------- /source/js/script.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 'use strict'; 3 | 4 | // Check for click events on the navbar burger icon 5 | $(".navbar-burger").click(function () { 6 | $(".navbar-burger").toggleClass("is-active"); 7 | $(".navbar-menu").toggleClass("is-active"); 8 | }); 9 | 10 | // Sticky Menu 11 | $(window).scroll(function () { 12 | if ($('.navbar').offset().top > 100) { 13 | $('.navbar').addClass('nav-bg'); 14 | } else { 15 | $('.navbar').removeClass('nav-bg'); 16 | } 17 | }); 18 | 19 | // Background-images 20 | $('[data-background]').each(function () { 21 | $(this).css({ 22 | 'background-image': 'url(' + $(this).data('background') + ')' 23 | }); 24 | }); 25 | 26 | // background color 27 | $('[data-color]').each(function () { 28 | $(this).css({ 29 | 'background-color': $(this).data('color') 30 | }); 31 | }); 32 | 33 | // progress bar 34 | $('[data-progress]').each(function () { 35 | $(this).css({ 36 | 'bottom': $(this).data('progress') 37 | }); 38 | }); 39 | 40 | 41 | /* ########################################### hero parallax ############################################## */ 42 | window.onload = function () { 43 | 44 | var parallaxBox = document.getElementById('parallax'); 45 | var 46 | /* c1left = document.getElementById('l1').offsetLeft, 47 | c1top = document.getElementById('l1').offsetTop, */ 48 | c2left = document.getElementById('l2').offsetLeft, 49 | c2top = document.getElementById('l2').offsetTop, 50 | c3left = document.getElementById('l3').offsetLeft, 51 | c3top = document.getElementById('l3').offsetTop, 52 | c4left = document.getElementById('l4').offsetLeft, 53 | c4top = document.getElementById('l4').offsetTop, 54 | c5left = document.getElementById('l5').offsetLeft, 55 | c5top = document.getElementById('l5').offsetTop, 56 | c6left = document.getElementById('l6').offsetLeft, 57 | c6top = document.getElementById('l6').offsetTop, 58 | c7left = document.getElementById('l7').offsetLeft, 59 | c7top = document.getElementById('l7').offsetTop, 60 | c8left = document.getElementById('l8').offsetLeft, 61 | c8top = document.getElementById('l8').offsetTop, 62 | c9left = document.getElementById('l9').offsetLeft, 63 | c9top = document.getElementById('l9').offsetTop; 64 | 65 | parallaxBox.onmousemove = function (event) { 66 | event = event || window.event; 67 | var x = event.clientX - parallaxBox.offsetLeft, 68 | y = event.clientY - parallaxBox.offsetTop; 69 | 70 | /* mouseParallax('l1', c1left, c1top, x, y, 5); */ 71 | mouseParallax('l2', c2left, c2top, x, y, 25); 72 | mouseParallax('l3', c3left, c3top, x, y, 20); 73 | mouseParallax('l4', c4left, c4top, x, y, 35); 74 | mouseParallax('l5', c5left, c5top, x, y, 30); 75 | mouseParallax('l6', c6left, c6top, x, y, 45); 76 | mouseParallax('l7', c7left, c7top, x, y, 30); 77 | mouseParallax('l8', c8left, c8top, x, y, 25); 78 | mouseParallax('l9', c9left, c9top, x, y, 40); 79 | }; 80 | 81 | }; 82 | 83 | function mouseParallax(id, left, top, mouseX, mouseY, speed) { 84 | var obj = document.getElementById(id); 85 | var parentObj = obj.parentNode, 86 | containerWidth = parseInt(parentObj.offsetWidth), 87 | containerHeight = parseInt(parentObj.offsetHeight); 88 | obj.style.left = left - (((mouseX - (parseInt(obj.offsetWidth) / 2 + left)) / containerWidth) * speed) + 'px'; 89 | obj.style.top = top - (((mouseY - (parseInt(obj.offsetHeight) / 2 + top)) / containerHeight) * speed) + 'px'; 90 | } 91 | /* ########################################### /hero parallax ############################################## */ 92 | 93 | // testimonial-slider 94 | $('.testimonial-slider').slick({ 95 | dots: true, 96 | infinite: true, 97 | speed: 300, 98 | slidesToShow: 1, 99 | arrows: false, 100 | adaptiveHeight: true 101 | }); 102 | 103 | 104 | // clients logo slider 105 | $('.client-logo-slider').slick({ 106 | infinite: true, 107 | slidesToShow: 5, 108 | slidesToScroll: 1, 109 | autoplay: true, 110 | dots: false, 111 | arrows: false, 112 | responsive: [{ 113 | breakpoint: 1024, 114 | settings: { 115 | slidesToShow: 3, 116 | slidesToScroll: 1 117 | } 118 | }, 119 | { 120 | breakpoint: 600, 121 | settings: { 122 | slidesToShow: 3, 123 | slidesToScroll: 1 124 | } 125 | }, 126 | { 127 | breakpoint: 480, 128 | settings: { 129 | slidesToShow: 2, 130 | slidesToScroll: 1 131 | } 132 | }, 133 | { 134 | breakpoint: 400, 135 | settings: { 136 | slidesToShow: 1, 137 | slidesToScroll: 1 138 | } 139 | } 140 | ] 141 | }); 142 | 143 | // Shuffle js filter and masonry 144 | var Shuffle = window.Shuffle; 145 | var jQuery = window.jQuery; 146 | 147 | var myShuffle = new Shuffle(document.querySelector('.shuffle-wrapper'), { 148 | itemSelector: '.shuffle-item', 149 | buffer: 1 150 | }); 151 | 152 | jQuery('input[name="shuffle-filter"]').on('change', function (evt) { 153 | var input = evt.currentTarget; 154 | if (input.checked) { 155 | myShuffle.filter(input.value); 156 | } 157 | }); 158 | 159 | 160 | // Check for click events on the navbar burger icon 161 | $(".filter-menu .button").click(function () { 162 | $(this).addClass("is-active").siblings().removeClass('is-active'); 163 | }); 164 | 165 | 166 | 167 | })(jQuery); -------------------------------------------------------------------------------- /theme/js/script.js: -------------------------------------------------------------------------------- 1 | /** 2 | * WEBSITE: https://themefisher.com 3 | * TWITTER: https://twitter.com/themefisher 4 | * FACEBOOK: https://www.facebook.com/themefisher 5 | * GITHUB: https://github.com/themefisher/ 6 | */ 7 | 8 | (function ($) { 9 | 'use strict'; 10 | 11 | // Check for click events on the navbar burger icon 12 | $(".navbar-burger").click(function () { 13 | $(".navbar-burger").toggleClass("is-active"); 14 | $(".navbar-menu").toggleClass("is-active"); 15 | }); 16 | 17 | // Sticky Menu 18 | $(window).scroll(function () { 19 | if ($('.navbar').offset().top > 100) { 20 | $('.navbar').addClass('nav-bg'); 21 | } else { 22 | $('.navbar').removeClass('nav-bg'); 23 | } 24 | }); 25 | 26 | // Background-images 27 | $('[data-background]').each(function () { 28 | $(this).css({ 29 | 'background-image': 'url(' + $(this).data('background') + ')' 30 | }); 31 | }); 32 | 33 | // background color 34 | $('[data-color]').each(function () { 35 | $(this).css({ 36 | 'background-color': $(this).data('color') 37 | }); 38 | }); 39 | 40 | // progress bar 41 | $('[data-progress]').each(function () { 42 | $(this).css({ 43 | 'bottom': $(this).data('progress') 44 | }); 45 | }); 46 | 47 | 48 | /* ########################################### hero parallax ############################################## */ 49 | window.onload = function () { 50 | 51 | var parallaxBox = document.getElementById('parallax'); 52 | var 53 | /* c1left = document.getElementById('l1').offsetLeft, 54 | c1top = document.getElementById('l1').offsetTop, */ 55 | c2left = document.getElementById('l2').offsetLeft, 56 | c2top = document.getElementById('l2').offsetTop, 57 | c3left = document.getElementById('l3').offsetLeft, 58 | c3top = document.getElementById('l3').offsetTop, 59 | c4left = document.getElementById('l4').offsetLeft, 60 | c4top = document.getElementById('l4').offsetTop, 61 | c5left = document.getElementById('l5').offsetLeft, 62 | c5top = document.getElementById('l5').offsetTop, 63 | c6left = document.getElementById('l6').offsetLeft, 64 | c6top = document.getElementById('l6').offsetTop, 65 | c7left = document.getElementById('l7').offsetLeft, 66 | c7top = document.getElementById('l7').offsetTop, 67 | c8left = document.getElementById('l8').offsetLeft, 68 | c8top = document.getElementById('l8').offsetTop, 69 | c9left = document.getElementById('l9').offsetLeft, 70 | c9top = document.getElementById('l9').offsetTop; 71 | 72 | parallaxBox.onmousemove = function (event) { 73 | event = event || window.event; 74 | var x = event.clientX - parallaxBox.offsetLeft, 75 | y = event.clientY - parallaxBox.offsetTop; 76 | 77 | /* mouseParallax('l1', c1left, c1top, x, y, 5); */ 78 | mouseParallax('l2', c2left, c2top, x, y, 25); 79 | mouseParallax('l3', c3left, c3top, x, y, 20); 80 | mouseParallax('l4', c4left, c4top, x, y, 35); 81 | mouseParallax('l5', c5left, c5top, x, y, 30); 82 | mouseParallax('l6', c6left, c6top, x, y, 45); 83 | mouseParallax('l7', c7left, c7top, x, y, 30); 84 | mouseParallax('l8', c8left, c8top, x, y, 25); 85 | mouseParallax('l9', c9left, c9top, x, y, 40); 86 | }; 87 | 88 | }; 89 | 90 | function mouseParallax(id, left, top, mouseX, mouseY, speed) { 91 | var obj = document.getElementById(id); 92 | var parentObj = obj.parentNode, 93 | containerWidth = parseInt(parentObj.offsetWidth), 94 | containerHeight = parseInt(parentObj.offsetHeight); 95 | obj.style.left = left - (((mouseX - (parseInt(obj.offsetWidth) / 2 + left)) / containerWidth) * speed) + 'px'; 96 | obj.style.top = top - (((mouseY - (parseInt(obj.offsetHeight) / 2 + top)) / containerHeight) * speed) + 'px'; 97 | } 98 | /* ########################################### /hero parallax ############################################## */ 99 | 100 | // testimonial-slider 101 | $('.testimonial-slider').slick({ 102 | dots: true, 103 | infinite: true, 104 | speed: 300, 105 | slidesToShow: 1, 106 | arrows: false, 107 | adaptiveHeight: true 108 | }); 109 | 110 | 111 | // clients logo slider 112 | $('.client-logo-slider').slick({ 113 | infinite: true, 114 | slidesToShow: 5, 115 | slidesToScroll: 1, 116 | autoplay: true, 117 | dots: false, 118 | arrows: false, 119 | responsive: [{ 120 | breakpoint: 1024, 121 | settings: { 122 | slidesToShow: 3, 123 | slidesToScroll: 1 124 | } 125 | }, 126 | { 127 | breakpoint: 600, 128 | settings: { 129 | slidesToShow: 3, 130 | slidesToScroll: 1 131 | } 132 | }, 133 | { 134 | breakpoint: 480, 135 | settings: { 136 | slidesToShow: 2, 137 | slidesToScroll: 1 138 | } 139 | }, 140 | { 141 | breakpoint: 400, 142 | settings: { 143 | slidesToShow: 1, 144 | slidesToScroll: 1 145 | } 146 | } 147 | ] 148 | }); 149 | 150 | // Shuffle js filter and masonry 151 | var Shuffle = window.Shuffle; 152 | var jQuery = window.jQuery; 153 | 154 | var myShuffle = new Shuffle(document.querySelector('.shuffle-wrapper'), { 155 | itemSelector: '.shuffle-item', 156 | buffer: 1 157 | }); 158 | 159 | jQuery('input[name="shuffle-filter"]').on('change', function (evt) { 160 | var input = evt.currentTarget; 161 | if (input.checked) { 162 | myShuffle.filter(input.value); 163 | } 164 | }); 165 | 166 | 167 | // Check for click events on the navbar burger icon 168 | $(".filter-menu .button").click(function () { 169 | $(this).addClass("is-active").siblings().removeClass('is-active'); 170 | }); 171 | 172 | 173 | 174 | })(jQuery); -------------------------------------------------------------------------------- /theme/contact.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | Kross | Portfolio Template 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 |
40 | 63 |
64 | 65 | 66 |
67 |
68 |
69 |

Contacts

70 |
71 |
72 | 73 | illustrations 74 | illustrations 75 | illustrations 76 | illustrations 77 | illustrations 78 | illustrations 79 | illustrations 80 |
81 | 82 | 83 | 84 | 113 | 114 | 115 | 116 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | -------------------------------------------------------------------------------- /source/scss/_common.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: $body-color; 3 | overflow-x: hidden; 4 | } 5 | 6 | ::selection { 7 | background: lighten($color: $primary-color, $amount: 10); 8 | color: $white; 9 | } 10 | 11 | /* preloader */ 12 | 13 | .preloader { 14 | position: fixed; 15 | top: 0; 16 | left: 0; 17 | right: 0; 18 | bottom: 0; 19 | background-color: #fff; 20 | z-index: 999; 21 | display: flex; 22 | align-items: center; 23 | justify-content: center; 24 | } 25 | 26 | ol, 27 | ul { 28 | list-style-type: none; 29 | margin: 0px; 30 | } 31 | 32 | img { 33 | vertical-align: middle; 34 | border: 0; 35 | } 36 | 37 | a, 38 | a:hover, 39 | a:focus { 40 | text-decoration: none; 41 | } 42 | 43 | a, 44 | button, 45 | select { 46 | cursor: pointer; 47 | transition: .2s ease; 48 | 49 | &:focus { 50 | outline: 0; 51 | } 52 | } 53 | 54 | a.text-dark{ 55 | &:hover{ 56 | color: $primary-color !important; 57 | } 58 | } 59 | 60 | a:hover { 61 | color: $primary-color; 62 | } 63 | 64 | .slick-slide { 65 | outline: 0; 66 | } 67 | 68 | .section { 69 | padding-top: 80px; 70 | padding-bottom: 80px; 71 | 72 | &-title { 73 | margin-bottom: 80px; 74 | font-family: $secondary-font; 75 | } 76 | &.is-small{ 77 | padding-top: 40px; 78 | padding-bottom: 40px; 79 | } 80 | } 81 | 82 | .has-background-cover { 83 | background-size: cover; 84 | background-position: center center; 85 | background-repeat: no-repeat; 86 | } 87 | 88 | /* overlay */ 89 | 90 | .overlay { 91 | position: relative; 92 | 93 | &::before { 94 | position: absolute; 95 | content: ''; 96 | height: 100%; 97 | width: 100%; 98 | top: 0; 99 | left: 0; 100 | background: $black; 101 | opacity: .5; 102 | } 103 | } 104 | 105 | .outline-0 { 106 | outline: 0 !important; 107 | } 108 | 109 | .d-unset { 110 | display: unset !important; 111 | } 112 | 113 | .has-background-primary { 114 | background: $primary-color !important; 115 | } 116 | 117 | .has-background-gray{ 118 | background: $gray !important; 119 | } 120 | 121 | .has-text-primary { 122 | color: $primary-color !important; 123 | } 124 | 125 | .has-text-color { 126 | color: $text-color; 127 | } 128 | 129 | .has-text-dark { 130 | color: $text-color-dark !important; 131 | } 132 | 133 | .has-text-light { 134 | color: $text-color-light !important; 135 | } 136 | 137 | .mb-10 { 138 | margin-bottom: 10px !important; 139 | } 140 | 141 | .mb-20 { 142 | margin-bottom: 20px !important; 143 | } 144 | 145 | .mb-30 { 146 | margin-bottom: 30px !important; 147 | } 148 | 149 | .mb-40 { 150 | margin-bottom: 40px !important; 151 | } 152 | 153 | .mb-50 { 154 | margin-bottom: 50px !important; 155 | } 156 | 157 | .mb-60 { 158 | margin-bottom: 60px !important; 159 | } 160 | 161 | .mb-70 { 162 | margin-bottom: 70px !important; 163 | } 164 | 165 | .mb-80 { 166 | margin-bottom: 80px !important; 167 | } 168 | 169 | .mb-90 { 170 | margin-bottom: 90px !important; 171 | } 172 | 173 | .mb-100 { 174 | margin-bottom: 100px !important; 175 | } 176 | 177 | .mr-20{ 178 | margin-right: 20px; 179 | } 180 | 181 | .zindex-1 { 182 | z-index: 1; 183 | } 184 | 185 | .rounded-lg{ 186 | border-radius: 15px; 187 | } 188 | 189 | .overflow-hidden { 190 | overflow: hidden; 191 | } 192 | 193 | .font-secondary { 194 | font-family: $secondary-font !important; 195 | } 196 | 197 | .font-tertiary { 198 | font-family: $secondary-font !important; 199 | } 200 | 201 | .shadow { 202 | box-shadow: 0px 18px 39.1px 6.9px rgba(224, 241, 255, 0.34) !important; 203 | } 204 | 205 | .bg-dark{ 206 | background-color: #222222 !important; 207 | } 208 | 209 | /* icon */ 210 | .icon { 211 | font-size: 45px; 212 | height: unset; 213 | width: unset; 214 | } 215 | 216 | .icon-bg { 217 | height: 100px; 218 | width: 100px; 219 | line-height: 100px; 220 | text-align: center; 221 | } 222 | 223 | .icon-light { 224 | color: #c8d5ef; 225 | } 226 | 227 | /* /icon */ 228 | 229 | /* slick slider */ 230 | .slick-dots{ 231 | text-align: center; 232 | padding-left: 0; 233 | li{ 234 | display: inline-block; 235 | margin: 2px; 236 | &.slick-active{ 237 | button{ 238 | background: $white; 239 | width: 25px; 240 | } 241 | } 242 | button{ 243 | height: 6px; 244 | width: 12px; 245 | background: rgba($color: $white, $alpha: .5); 246 | color: transparent; 247 | border-radius: 10px; 248 | overflow: hidden; 249 | transition: .2s ease; 250 | border: 0; 251 | } 252 | } 253 | } 254 | /* /slick slider */ 255 | 256 | /* form */ 257 | .input{ 258 | border: 0; 259 | border-radius: 0; 260 | border-bottom: 1px solid $border-color; 261 | height: 60px; 262 | box-shadow: none; 263 | &:focus{ 264 | border-color: $primary-color; 265 | outline: 0; 266 | box-shadow: none !important; 267 | } 268 | } 269 | 270 | textarea.input{ 271 | height: 120px; 272 | } 273 | /* /form */ 274 | 275 | /* card */ 276 | .card{ 277 | border: 0; 278 | &-header{ 279 | border: 0; 280 | } 281 | &-footer{ 282 | border: 0; 283 | } 284 | } 285 | /* /card */ 286 | 287 | .list-hero-social{ 288 | position: relative; 289 | z-index: 1; 290 | background: transparent; 291 | box-shadow: none; 292 | border: none; 293 | width: 40px; 294 | margin: 30px 0 0 50px; 295 | .list-item{ 296 | border: none; 297 | background: transparent; 298 | } 299 | } 300 | 301 | .is-rounded{ 302 | border-radius: 50%; 303 | } 304 | 305 | .image.is-full{ 306 | width: 100%; 307 | } 308 | 309 | .has-border-top{ 310 | border-top: 1px solid $border-color; 311 | } 312 | 313 | .has-border-bottom{ 314 | border-bottom: 1px solid $border-color; 315 | } 316 | 317 | .is-border-dark{ 318 | border-color: #343a40!important; 319 | } 320 | 321 | .is-border-white{ 322 | border-color: $white !important; 323 | } 324 | 325 | .has-padding-top-15{ 326 | padding-top: 15px; 327 | } 328 | 329 | .has-padding-20{ 330 | padding: 20px; 331 | } 332 | 333 | .buttons{ 334 | .button{ 335 | input{ 336 | width: 0; 337 | visibility: hidden; 338 | } 339 | } 340 | } -------------------------------------------------------------------------------- /source/about.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | 3 | @@include('blocks/navigation.htm') 4 | 5 | 6 |
7 |
8 |

About Me

9 |
10 | 11 | illustrations 12 | illustrations 13 | illustrations 14 | illustrations 15 | illustrations 16 | illustrations 17 |
18 | 19 | 20 | 21 |
22 |
23 |
24 |
25 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 26 | dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea 27 | commodo consequat.

28 |

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. 29 | Excepteur sint occaecat cupidatat non proident.

30 |

Deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem 31 | accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi 32 | architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia.

33 |
34 |
35 |
36 | author 38 |
39 | signature 40 |

Johnathan Smith

41 |
42 |
43 |
44 |
45 | 46 | 47 | 48 |
49 |
50 |
51 |

Work Process

52 |
53 |
54 |
55 | icon 56 |

Research and Plan

57 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 58 | dolore magna aliqua.

59 |
60 |
61 | icon 62 |

Design and Develop

63 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 64 | dolore magna aliqua.

65 |
66 |
67 | icon 68 |

Deliver

69 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 70 | dolore magna aliqua.

71 |
72 |
73 |
74 |
75 | 76 | 77 | 78 |
79 |
80 |
81 |

My Team

82 |
83 |
84 |
85 |
86 | 87 |
88 |

Jack Schenziwe

89 |

Project Manager

90 |
91 |
92 |
93 |
94 |
95 | 96 |
97 |

Jack Schenziwe

98 |

Project Manager

99 |
100 |
101 |
102 |
103 |
104 | 105 |
106 |

Jack Schenziwe

107 |

Project Manager

108 |
109 |
110 |
111 |
112 |
113 |
114 | 115 | 116 | 117 |
118 |
119 |
120 |

My Clients

121 |
122 |
123 | client-logo 125 | client-logo 127 | client-logo 129 | client-logo 131 | client-logo 133 | client-logo 135 | client-logo 137 | client-logo 139 | client-logo 141 | client-logo 143 |
144 |
145 |
146 | 147 | 148 | @@include('blocks/footer.htm') 149 | 150 | @@include('footer.htm') -------------------------------------------------------------------------------- /source/blog.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | 3 | @@include('blocks/navigation.htm') 4 | 5 | 6 |
7 |
8 |
9 |

Blogs

10 |
11 |
12 | 13 | illustrations 14 | illustrations 15 | illustrations 16 | illustrations 17 | illustrations 18 | illustrations 19 | illustrations 20 |
21 | 22 | 23 | 24 |
25 |
26 |
27 |
28 |
29 | post-thumb 30 |
31 |

Amazon increase income 1.5 Million 32 |

33 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 34 | incididunt ut labore et 35 | dolore magna aliqua.

36 | Read More 37 |
38 |
39 |
40 |
41 |
42 | post-thumb 43 |
44 |

Amazon increase income 1.5 Million 45 |

46 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 47 | incididunt ut labore et 48 | dolore magna aliqua.

49 | Read More 50 |
51 |
52 |
53 |
54 |
55 | post-thumb 56 |
57 |

Amazon increase income 1.5 Million 58 |

59 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 60 | incididunt ut labore et 61 | dolore magna aliqua.

62 | Read More 63 |
64 |
65 |
66 |
67 |
68 | post-thumb 69 |
70 |

Amazon increase income 1.5 Million 71 |

72 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 73 | incididunt ut labore et 74 | dolore magna aliqua.

75 | Read More 76 |
77 |
78 |
79 |
80 |
81 | post-thumb 82 |
83 |

Amazon increase income 1.5 Million 84 |

85 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 86 | incididunt ut labore et 87 | dolore magna aliqua.

88 | Read More 89 |
90 |
91 |
92 |
93 |
94 | post-thumb 95 |
96 |

Amazon increase income 1.5 Million 97 |

98 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 99 | incididunt ut labore et 100 | dolore magna aliqua.

101 | Read More 102 |
103 |
104 |
105 |
106 |
107 |
108 | 109 | 110 | 111 |
112 |
113 |
114 |

My Clients

115 |
116 |
117 | client-logo 119 | client-logo 121 | client-logo 123 | client-logo 125 | client-logo 127 | client-logo 129 | client-logo 131 | client-logo 133 | client-logo 135 | client-logo 137 |
138 |
139 |
140 | 141 | 142 | @@include('blocks/footer.htm') 143 | 144 | @@include('footer.htm') -------------------------------------------------------------------------------- /source/portfolio.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | 3 | @@include('blocks/navigation.htm') 4 | 5 | 6 |
7 |
8 |
9 |

Portfolio

10 |
11 |
12 | 13 | illustrations 14 | illustrations 15 | illustrations 16 | illustrations 17 | illustrations 18 | illustrations 19 | illustrations 20 |
21 | 22 | 23 | 24 |
25 |
26 | 27 |
28 | 31 | 34 | 37 | 40 |
41 | 42 | 43 |
44 |
45 |
46 | portfolio-image 47 |
48 |
49 | view project 50 |
51 |
52 |
53 |
54 |
55 |
56 | portfolio-image 57 |
58 |
59 | view project 60 |
61 |
62 |
63 |
64 |
65 |
66 | portfolio-image 67 |
68 |
69 | view project 70 |
71 |
72 |
73 |
74 |
75 |
76 | portfolio-image 77 |
78 |
79 | view project 80 |
81 |
82 |
83 |
84 |
85 |
86 | portfolio-image 87 |
88 |
89 | view project 90 |
91 |
92 |
93 |
94 |
95 |
96 | portfolio-image 97 |
98 |
99 | view project 100 |
101 |
102 |
103 |
104 |
105 |
106 | portfolio-image 107 |
108 |
109 | view project 110 |
111 |
112 |
113 |
114 |
116 |
117 | portfolio-image 118 |
119 |
120 | view project 121 |
122 |
123 |
124 |
125 |
126 |
127 | portfolio-image 128 |
129 |
130 | view project 131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 | 139 | 140 | 141 |
142 |
143 |
144 |

My Clients

145 |
146 |
147 | client-logo 149 | client-logo 151 | client-logo 153 | client-logo 155 | client-logo 157 | client-logo 159 | client-logo 161 | client-logo 163 | client-logo 165 | client-logo 167 |
168 |
169 |
170 | 171 | 172 | @@include('blocks/footer.htm') 173 | 174 | @@include('footer.htm') -------------------------------------------------------------------------------- /source/blog-single.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | 3 | @@include('blocks/navigation.htm') 4 | 5 | 6 | 7 |
8 |
9 |
10 |

Blog Single

11 |
12 |
13 | 14 | illustrations 15 | illustrations 16 | illustrations 17 | illustrations 18 | illustrations 19 | illustrations 20 | illustrations 21 |
22 | 23 | 24 |
25 |
26 |

What should be the proper purpose of UI and UX design?

27 |

Published on May 26, 2017 by uixgeek on UX design

29 |
30 | post-thumb 31 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore 32 | et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 33 | ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu 34 | fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt 35 | mollit anim id est laborum. 36 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 37 | dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex 38 | ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat 39 | nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit 40 | anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque 41 | laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae 42 | dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia 43 | consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est.

44 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 45 | dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex 46 | ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat 47 | nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit 48 | anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque 49 | laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae 50 | dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia 51 | consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem 52 | ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut 53 | labore et dolore magnam aliquam quaerat voluptatem.

54 |
Dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi 55 | tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.
56 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 57 | dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex 58 | ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat 59 | nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit 60 | anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque 61 | laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae 62 | dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia 63 | consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem 64 | ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut 65 | labore et dolore magnam aliquam quaerat voluptatem.

66 |
67 |
68 |
69 | 70 |
71 |
72 |

Comments 03

73 |
74 |
75 |
76 |

77 | 78 |

79 |
80 |
81 |
Carole Marvin.
82 |

15 january 2015 At 10:30 pm

83 |

Ne erat velit invidunt his. Eum in dicta veniam interesset, harum fuisset te nam ea cu lupta 84 | definitionem.

85 | Reply 86 |
87 |
88 |

89 | 90 |

91 |
92 |
93 |
Jaquan Rolfson.
94 |

15 january 2015 At 10:30 pm

95 |

Ne erat velit invidunt his. Eum in dicta veniam interesset, harum fuisset te nam ea cu lupta 96 | definitionem.

97 | Reply 98 |
99 |
100 |
101 |
102 |
103 |
104 |

105 | 106 |

107 |
108 |
109 |
Bruce Bernier.
110 |

15 january 2015 At 10:30 pm

111 |

Ne erat velit invidunt his. Eum in dicta veniam interesset, harum fuisset te nam ea cu lupta 112 | definitionem.

113 | Reply 114 |
115 |
116 |
117 |

Leave a Comment

118 |
119 |
120 | 121 | 122 | 123 |
124 |
125 | 126 | 127 |
128 |
129 |
130 |
131 | 132 | 133 |
134 |
135 |
136 |

Similar Stories

137 |
138 |
139 |
140 |
141 |
142 | Placeholder image 143 |
144 |
145 |

Amazon increase income 1.5 Million 146 |

147 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 148 | incididunt ut labore et 149 | dolore magna aliqua.

150 | Read More 151 |
152 |
153 |
154 |
155 |
156 |
157 | Placeholder image 158 |
159 |
160 |

Amazon increase income 1.5 Million 161 |

162 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 163 | incididunt ut labore et 164 | dolore magna aliqua.

165 | Read More 166 |
167 |
168 |
169 |
170 |
171 |
172 | Placeholder image 173 |
174 |
175 |

Amazon increase income 1.5 Million 176 |

177 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 178 | incididunt ut labore et 179 | dolore magna aliqua.

180 | Read More 181 |
182 |
183 |
184 |
185 |
186 |
187 | 188 | 189 | @@include('blocks/footer.htm') 190 | 191 | @@include('footer.htm') -------------------------------------------------------------------------------- /theme/about.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | Kross | Portfolio Template 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 |
40 | 63 |
64 | 65 | 66 |
67 |
68 |

About Me

69 |
70 | 71 | illustrations 72 | illustrations 73 | illustrations 74 | illustrations 75 | illustrations 76 | illustrations 77 |
78 | 79 | 80 | 81 |
82 |
83 |
84 |
85 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 86 | dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea 87 | commodo consequat.

88 |

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. 89 | Excepteur sint occaecat cupidatat non proident.

90 |

Deserunt mollit anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem 91 | accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi 92 | architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia.

93 |
94 |
95 |
96 | author 98 |
99 | signature 100 |

Johnathan Smith

101 |
102 |
103 |
104 |
105 | 106 | 107 | 108 |
109 |
110 |
111 |

Work Process

112 |
113 |
114 |
115 | icon 116 |

Research and Plan

117 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 118 | dolore magna aliqua.

119 |
120 |
121 | icon 122 |

Design and Develop

123 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 124 | dolore magna aliqua.

125 |
126 |
127 | icon 128 |

Deliver

129 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 130 | dolore magna aliqua.

131 |
132 |
133 |
134 |
135 | 136 | 137 | 138 |
139 |
140 |
141 |

My Team

142 |
143 |
144 |
145 |
146 | 147 |
148 |

Jack Schenziwe

149 |

Project Manager

150 |
151 |
152 |
153 |
154 |
155 | 156 |
157 |

Jack Schenziwe

158 |

Project Manager

159 |
160 |
161 |
162 |
163 |
164 | 165 |
166 |

Jack Schenziwe

167 |

Project Manager

168 |
169 |
170 |
171 |
172 |
173 |
174 | 175 | 176 | 177 |
178 |
179 |
180 |

My Clients

181 |
182 |
183 | client-logo 185 | client-logo 187 | client-logo 189 | client-logo 191 | client-logo 193 | client-logo 195 | client-logo 197 | client-logo 199 | client-logo 201 | client-logo 203 |
204 |
205 |
206 | 207 | 208 | 209 | 238 | 239 | 240 | 241 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | -------------------------------------------------------------------------------- /theme/blog.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | Kross | Portfolio Template 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 |
40 | 63 |
64 | 65 | 66 |
67 |
68 |
69 |

Blogs

70 |
71 |
72 | 73 | illustrations 74 | illustrations 75 | illustrations 76 | illustrations 77 | illustrations 78 | illustrations 79 | illustrations 80 |
81 | 82 | 83 | 84 |
85 |
86 |
87 |
88 |
89 | post-thumb 90 |
91 |

Amazon increase income 1.5 Million 92 |

93 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 94 | incididunt ut labore et 95 | dolore magna aliqua.

96 | Read More 97 |
98 |
99 |
100 |
101 |
102 | post-thumb 103 |
104 |

Amazon increase income 1.5 Million 105 |

106 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 107 | incididunt ut labore et 108 | dolore magna aliqua.

109 | Read More 110 |
111 |
112 |
113 |
114 |
115 | post-thumb 116 |
117 |

Amazon increase income 1.5 Million 118 |

119 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 120 | incididunt ut labore et 121 | dolore magna aliqua.

122 | Read More 123 |
124 |
125 |
126 |
127 |
128 | post-thumb 129 |
130 |

Amazon increase income 1.5 Million 131 |

132 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 133 | incididunt ut labore et 134 | dolore magna aliqua.

135 | Read More 136 |
137 |
138 |
139 |
140 |
141 | post-thumb 142 |
143 |

Amazon increase income 1.5 Million 144 |

145 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 146 | incididunt ut labore et 147 | dolore magna aliqua.

148 | Read More 149 |
150 |
151 |
152 |
153 |
154 | post-thumb 155 |
156 |

Amazon increase income 1.5 Million 157 |

158 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 159 | incididunt ut labore et 160 | dolore magna aliqua.

161 | Read More 162 |
163 |
164 |
165 |
166 |
167 |
168 | 169 | 170 | 171 |
172 |
173 |
174 |

My Clients

175 |
176 |
177 | client-logo 179 | client-logo 181 | client-logo 183 | client-logo 185 | client-logo 187 | client-logo 189 | client-logo 191 | client-logo 193 | client-logo 195 | client-logo 197 |
198 |
199 |
200 | 201 | 202 | 203 | 232 | 233 | 234 | 235 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | -------------------------------------------------------------------------------- /source/plugins/themify-icons/themify-icons.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:themify;src:url(fonts/themify.eot?-fvbane);src:url(fonts/themify.eot?#iefix-fvbane) format('embedded-opentype'),url(fonts/themify.woff?-fvbane) format('woff'),url(fonts/themify.ttf?-fvbane) format('truetype'),url(fonts/themify.svg?-fvbane#themify) format('svg');font-weight:400;font-style:normal}[class*=" ti-"],[class^=ti-]{font-family:themify;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ti-wand:before{content:"\e600"}.ti-volume:before{content:"\e601"}.ti-user:before{content:"\e602"}.ti-unlock:before{content:"\e603"}.ti-unlink:before{content:"\e604"}.ti-trash:before{content:"\e605"}.ti-thought:before{content:"\e606"}.ti-target:before{content:"\e607"}.ti-tag:before{content:"\e608"}.ti-tablet:before{content:"\e609"}.ti-star:before{content:"\e60a"}.ti-spray:before{content:"\e60b"}.ti-signal:before{content:"\e60c"}.ti-shopping-cart:before{content:"\e60d"}.ti-shopping-cart-full:before{content:"\e60e"}.ti-settings:before{content:"\e60f"}.ti-search:before{content:"\e610"}.ti-zoom-in:before{content:"\e611"}.ti-zoom-out:before{content:"\e612"}.ti-cut:before{content:"\e613"}.ti-ruler:before{content:"\e614"}.ti-ruler-pencil:before{content:"\e615"}.ti-ruler-alt:before{content:"\e616"}.ti-bookmark:before{content:"\e617"}.ti-bookmark-alt:before{content:"\e618"}.ti-reload:before{content:"\e619"}.ti-plus:before{content:"\e61a"}.ti-pin:before{content:"\e61b"}.ti-pencil:before{content:"\e61c"}.ti-pencil-alt:before{content:"\e61d"}.ti-paint-roller:before{content:"\e61e"}.ti-paint-bucket:before{content:"\e61f"}.ti-na:before{content:"\e620"}.ti-mobile:before{content:"\e621"}.ti-minus:before{content:"\e622"}.ti-medall:before{content:"\e623"}.ti-medall-alt:before{content:"\e624"}.ti-marker:before{content:"\e625"}.ti-marker-alt:before{content:"\e626"}.ti-arrow-up:before{content:"\e627"}.ti-arrow-right:before{content:"\e628"}.ti-arrow-left:before{content:"\e629"}.ti-arrow-down:before{content:"\e62a"}.ti-lock:before{content:"\e62b"}.ti-location-arrow:before{content:"\e62c"}.ti-link:before{content:"\e62d"}.ti-layout:before{content:"\e62e"}.ti-layers:before{content:"\e62f"}.ti-layers-alt:before{content:"\e630"}.ti-key:before{content:"\e631"}.ti-import:before{content:"\e632"}.ti-image:before{content:"\e633"}.ti-heart:before{content:"\e634"}.ti-heart-broken:before{content:"\e635"}.ti-hand-stop:before{content:"\e636"}.ti-hand-open:before{content:"\e637"}.ti-hand-drag:before{content:"\e638"}.ti-folder:before{content:"\e639"}.ti-flag:before{content:"\e63a"}.ti-flag-alt:before{content:"\e63b"}.ti-flag-alt-2:before{content:"\e63c"}.ti-eye:before{content:"\e63d"}.ti-export:before{content:"\e63e"}.ti-exchange-vertical:before{content:"\e63f"}.ti-desktop:before{content:"\e640"}.ti-cup:before{content:"\e641"}.ti-crown:before{content:"\e642"}.ti-comments:before{content:"\e643"}.ti-comment:before{content:"\e644"}.ti-comment-alt:before{content:"\e645"}.ti-close:before{content:"\e646"}.ti-clip:before{content:"\e647"}.ti-angle-up:before{content:"\e648"}.ti-angle-right:before{content:"\e649"}.ti-angle-left:before{content:"\e64a"}.ti-angle-down:before{content:"\e64b"}.ti-check:before{content:"\e64c"}.ti-check-box:before{content:"\e64d"}.ti-camera:before{content:"\e64e"}.ti-announcement:before{content:"\e64f"}.ti-brush:before{content:"\e650"}.ti-briefcase:before{content:"\e651"}.ti-bolt:before{content:"\e652"}.ti-bolt-alt:before{content:"\e653"}.ti-blackboard:before{content:"\e654"}.ti-bag:before{content:"\e655"}.ti-move:before{content:"\e656"}.ti-arrows-vertical:before{content:"\e657"}.ti-arrows-horizontal:before{content:"\e658"}.ti-fullscreen:before{content:"\e659"}.ti-arrow-top-right:before{content:"\e65a"}.ti-arrow-top-left:before{content:"\e65b"}.ti-arrow-circle-up:before{content:"\e65c"}.ti-arrow-circle-right:before{content:"\e65d"}.ti-arrow-circle-left:before{content:"\e65e"}.ti-arrow-circle-down:before{content:"\e65f"}.ti-angle-double-up:before{content:"\e660"}.ti-angle-double-right:before{content:"\e661"}.ti-angle-double-left:before{content:"\e662"}.ti-angle-double-down:before{content:"\e663"}.ti-zip:before{content:"\e664"}.ti-world:before{content:"\e665"}.ti-wheelchair:before{content:"\e666"}.ti-view-list:before{content:"\e667"}.ti-view-list-alt:before{content:"\e668"}.ti-view-grid:before{content:"\e669"}.ti-uppercase:before{content:"\e66a"}.ti-upload:before{content:"\e66b"}.ti-underline:before{content:"\e66c"}.ti-truck:before{content:"\e66d"}.ti-timer:before{content:"\e66e"}.ti-ticket:before{content:"\e66f"}.ti-thumb-up:before{content:"\e670"}.ti-thumb-down:before{content:"\e671"}.ti-text:before{content:"\e672"}.ti-stats-up:before{content:"\e673"}.ti-stats-down:before{content:"\e674"}.ti-split-v:before{content:"\e675"}.ti-split-h:before{content:"\e676"}.ti-smallcap:before{content:"\e677"}.ti-shine:before{content:"\e678"}.ti-shift-right:before{content:"\e679"}.ti-shift-left:before{content:"\e67a"}.ti-shield:before{content:"\e67b"}.ti-notepad:before{content:"\e67c"}.ti-server:before{content:"\e67d"}.ti-quote-right:before{content:"\e67e"}.ti-quote-left:before{content:"\e67f"}.ti-pulse:before{content:"\e680"}.ti-printer:before{content:"\e681"}.ti-power-off:before{content:"\e682"}.ti-plug:before{content:"\e683"}.ti-pie-chart:before{content:"\e684"}.ti-paragraph:before{content:"\e685"}.ti-panel:before{content:"\e686"}.ti-package:before{content:"\e687"}.ti-music:before{content:"\e688"}.ti-music-alt:before{content:"\e689"}.ti-mouse:before{content:"\e68a"}.ti-mouse-alt:before{content:"\e68b"}.ti-money:before{content:"\e68c"}.ti-microphone:before{content:"\e68d"}.ti-menu:before{content:"\e68e"}.ti-menu-alt:before{content:"\e68f"}.ti-map:before{content:"\e690"}.ti-map-alt:before{content:"\e691"}.ti-loop:before{content:"\e692"}.ti-location-pin:before{content:"\e693"}.ti-list:before{content:"\e694"}.ti-light-bulb:before{content:"\e695"}.ti-Italic:before{content:"\e696"}.ti-info:before{content:"\e697"}.ti-infinite:before{content:"\e698"}.ti-id-badge:before{content:"\e699"}.ti-hummer:before{content:"\e69a"}.ti-home:before{content:"\e69b"}.ti-help:before{content:"\e69c"}.ti-headphone:before{content:"\e69d"}.ti-harddrives:before{content:"\e69e"}.ti-harddrive:before{content:"\e69f"}.ti-gift:before{content:"\e6a0"}.ti-game:before{content:"\e6a1"}.ti-filter:before{content:"\e6a2"}.ti-files:before{content:"\e6a3"}.ti-file:before{content:"\e6a4"}.ti-eraser:before{content:"\e6a5"}.ti-envelope:before{content:"\e6a6"}.ti-download:before{content:"\e6a7"}.ti-direction:before{content:"\e6a8"}.ti-direction-alt:before{content:"\e6a9"}.ti-dashboard:before{content:"\e6aa"}.ti-control-stop:before{content:"\e6ab"}.ti-control-shuffle:before{content:"\e6ac"}.ti-control-play:before{content:"\e6ad"}.ti-control-pause:before{content:"\e6ae"}.ti-control-forward:before{content:"\e6af"}.ti-control-backward:before{content:"\e6b0"}.ti-cloud:before{content:"\e6b1"}.ti-cloud-up:before{content:"\e6b2"}.ti-cloud-down:before{content:"\e6b3"}.ti-clipboard:before{content:"\e6b4"}.ti-car:before{content:"\e6b5"}.ti-calendar:before{content:"\e6b6"}.ti-book:before{content:"\e6b7"}.ti-bell:before{content:"\e6b8"}.ti-basketball:before{content:"\e6b9"}.ti-bar-chart:before{content:"\e6ba"}.ti-bar-chart-alt:before{content:"\e6bb"}.ti-back-right:before{content:"\e6bc"}.ti-back-left:before{content:"\e6bd"}.ti-arrows-corner:before{content:"\e6be"}.ti-archive:before{content:"\e6bf"}.ti-anchor:before{content:"\e6c0"}.ti-align-right:before{content:"\e6c1"}.ti-align-left:before{content:"\e6c2"}.ti-align-justify:before{content:"\e6c3"}.ti-align-center:before{content:"\e6c4"}.ti-alert:before{content:"\e6c5"}.ti-alarm-clock:before{content:"\e6c6"}.ti-agenda:before{content:"\e6c7"}.ti-write:before{content:"\e6c8"}.ti-window:before{content:"\e6c9"}.ti-widgetized:before{content:"\e6ca"}.ti-widget:before{content:"\e6cb"}.ti-widget-alt:before{content:"\e6cc"}.ti-wallet:before{content:"\e6cd"}.ti-video-clapper:before{content:"\e6ce"}.ti-video-camera:before{content:"\e6cf"}.ti-vector:before{content:"\e6d0"}.ti-themify-logo:before{content:"\e6d1"}.ti-themify-favicon:before{content:"\e6d2"}.ti-themify-favicon-alt:before{content:"\e6d3"}.ti-support:before{content:"\e6d4"}.ti-stamp:before{content:"\e6d5"}.ti-split-v-alt:before{content:"\e6d6"}.ti-slice:before{content:"\e6d7"}.ti-shortcode:before{content:"\e6d8"}.ti-shift-right-alt:before{content:"\e6d9"}.ti-shift-left-alt:before{content:"\e6da"}.ti-ruler-alt-2:before{content:"\e6db"}.ti-receipt:before{content:"\e6dc"}.ti-pin2:before{content:"\e6dd"}.ti-pin-alt:before{content:"\e6de"}.ti-pencil-alt2:before{content:"\e6df"}.ti-palette:before{content:"\e6e0"}.ti-more:before{content:"\e6e1"}.ti-more-alt:before{content:"\e6e2"}.ti-microphone-alt:before{content:"\e6e3"}.ti-magnet:before{content:"\e6e4"}.ti-line-double:before{content:"\e6e5"}.ti-line-dotted:before{content:"\e6e6"}.ti-line-dashed:before{content:"\e6e7"}.ti-layout-width-full:before{content:"\e6e8"}.ti-layout-width-default:before{content:"\e6e9"}.ti-layout-width-default-alt:before{content:"\e6ea"}.ti-layout-tab:before{content:"\e6eb"}.ti-layout-tab-window:before{content:"\e6ec"}.ti-layout-tab-v:before{content:"\e6ed"}.ti-layout-tab-min:before{content:"\e6ee"}.ti-layout-slider:before{content:"\e6ef"}.ti-layout-slider-alt:before{content:"\e6f0"}.ti-layout-sidebar-right:before{content:"\e6f1"}.ti-layout-sidebar-none:before{content:"\e6f2"}.ti-layout-sidebar-left:before{content:"\e6f3"}.ti-layout-placeholder:before{content:"\e6f4"}.ti-layout-menu:before{content:"\e6f5"}.ti-layout-menu-v:before{content:"\e6f6"}.ti-layout-menu-separated:before{content:"\e6f7"}.ti-layout-menu-full:before{content:"\e6f8"}.ti-layout-media-right-alt:before{content:"\e6f9"}.ti-layout-media-right:before{content:"\e6fa"}.ti-layout-media-overlay:before{content:"\e6fb"}.ti-layout-media-overlay-alt:before{content:"\e6fc"}.ti-layout-media-overlay-alt-2:before{content:"\e6fd"}.ti-layout-media-left-alt:before{content:"\e6fe"}.ti-layout-media-left:before{content:"\e6ff"}.ti-layout-media-center-alt:before{content:"\e700"}.ti-layout-media-center:before{content:"\e701"}.ti-layout-list-thumb:before{content:"\e702"}.ti-layout-list-thumb-alt:before{content:"\e703"}.ti-layout-list-post:before{content:"\e704"}.ti-layout-list-large-image:before{content:"\e705"}.ti-layout-line-solid:before{content:"\e706"}.ti-layout-grid4:before{content:"\e707"}.ti-layout-grid3:before{content:"\e708"}.ti-layout-grid2:before{content:"\e709"}.ti-layout-grid2-thumb:before{content:"\e70a"}.ti-layout-cta-right:before{content:"\e70b"}.ti-layout-cta-left:before{content:"\e70c"}.ti-layout-cta-center:before{content:"\e70d"}.ti-layout-cta-btn-right:before{content:"\e70e"}.ti-layout-cta-btn-left:before{content:"\e70f"}.ti-layout-column4:before{content:"\e710"}.ti-layout-column3:before{content:"\e711"}.ti-layout-column2:before{content:"\e712"}.ti-layout-accordion-separated:before{content:"\e713"}.ti-layout-accordion-merged:before{content:"\e714"}.ti-layout-accordion-list:before{content:"\e715"}.ti-ink-pen:before{content:"\e716"}.ti-info-alt:before{content:"\e717"}.ti-help-alt:before{content:"\e718"}.ti-headphone-alt:before{content:"\e719"}.ti-hand-point-up:before{content:"\e71a"}.ti-hand-point-right:before{content:"\e71b"}.ti-hand-point-left:before{content:"\e71c"}.ti-hand-point-down:before{content:"\e71d"}.ti-gallery:before{content:"\e71e"}.ti-face-smile:before{content:"\e71f"}.ti-face-sad:before{content:"\e720"}.ti-credit-card:before{content:"\e721"}.ti-control-skip-forward:before{content:"\e722"}.ti-control-skip-backward:before{content:"\e723"}.ti-control-record:before{content:"\e724"}.ti-control-eject:before{content:"\e725"}.ti-comments-smiley:before{content:"\e726"}.ti-brush-alt:before{content:"\e727"}.ti-youtube:before{content:"\e728"}.ti-vimeo:before{content:"\e729"}.ti-twitter:before{content:"\e72a"}.ti-time:before{content:"\e72b"}.ti-tumblr:before{content:"\e72c"}.ti-skype:before{content:"\e72d"}.ti-share:before{content:"\e72e"}.ti-share-alt:before{content:"\e72f"}.ti-rocket:before{content:"\e730"}.ti-pinterest:before{content:"\e731"}.ti-new-window:before{content:"\e732"}.ti-microsoft:before{content:"\e733"}.ti-list-ol:before{content:"\e734"}.ti-linkedin:before{content:"\e735"}.ti-layout-sidebar-2:before{content:"\e736"}.ti-layout-grid4-alt:before{content:"\e737"}.ti-layout-grid3-alt:before{content:"\e738"}.ti-layout-grid2-alt:before{content:"\e739"}.ti-layout-column4-alt:before{content:"\e73a"}.ti-layout-column3-alt:before{content:"\e73b"}.ti-layout-column2-alt:before{content:"\e73c"}.ti-instagram:before{content:"\e73d"}.ti-google:before{content:"\e73e"}.ti-github:before{content:"\e73f"}.ti-flickr:before{content:"\e740"}.ti-facebook:before{content:"\e741"}.ti-dropbox:before{content:"\e742"}.ti-dribbble:before{content:"\e743"}.ti-apple:before{content:"\e744"}.ti-android:before{content:"\e745"}.ti-save:before{content:"\e746"}.ti-save-alt:before{content:"\e747"}.ti-yahoo:before{content:"\e748"}.ti-wordpress:before{content:"\e749"}.ti-vimeo-alt:before{content:"\e74a"}.ti-twitter-alt:before{content:"\e74b"}.ti-tumblr-alt:before{content:"\e74c"}.ti-trello:before{content:"\e74d"}.ti-stack-overflow:before{content:"\e74e"}.ti-soundcloud:before{content:"\e74f"}.ti-sharethis:before{content:"\e750"}.ti-sharethis-alt:before{content:"\e751"}.ti-reddit:before{content:"\e752"}.ti-pinterest-alt:before{content:"\e753"}.ti-microsoft-alt:before{content:"\e754"}.ti-linux:before{content:"\e755"}.ti-jsfiddle:before{content:"\e756"}.ti-joomla:before{content:"\e757"}.ti-html5:before{content:"\e758"}.ti-flickr-alt:before{content:"\e759"}.ti-email:before{content:"\e75a"}.ti-drupal:before{content:"\e75b"}.ti-dropbox-alt:before{content:"\e75c"}.ti-css3:before{content:"\e75d"}.ti-rss:before{content:"\e75e"}.ti-rss-alt:before{content:"\e75f"} -------------------------------------------------------------------------------- /theme/plugins/themify-icons/themify-icons.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:themify;src:url(fonts/themify.eot?-fvbane);src:url(fonts/themify.eot?#iefix-fvbane) format('embedded-opentype'),url(fonts/themify.woff?-fvbane) format('woff'),url(fonts/themify.ttf?-fvbane) format('truetype'),url(fonts/themify.svg?-fvbane#themify) format('svg');font-weight:400;font-style:normal}[class*=" ti-"],[class^=ti-]{font-family:themify;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ti-wand:before{content:"\e600"}.ti-volume:before{content:"\e601"}.ti-user:before{content:"\e602"}.ti-unlock:before{content:"\e603"}.ti-unlink:before{content:"\e604"}.ti-trash:before{content:"\e605"}.ti-thought:before{content:"\e606"}.ti-target:before{content:"\e607"}.ti-tag:before{content:"\e608"}.ti-tablet:before{content:"\e609"}.ti-star:before{content:"\e60a"}.ti-spray:before{content:"\e60b"}.ti-signal:before{content:"\e60c"}.ti-shopping-cart:before{content:"\e60d"}.ti-shopping-cart-full:before{content:"\e60e"}.ti-settings:before{content:"\e60f"}.ti-search:before{content:"\e610"}.ti-zoom-in:before{content:"\e611"}.ti-zoom-out:before{content:"\e612"}.ti-cut:before{content:"\e613"}.ti-ruler:before{content:"\e614"}.ti-ruler-pencil:before{content:"\e615"}.ti-ruler-alt:before{content:"\e616"}.ti-bookmark:before{content:"\e617"}.ti-bookmark-alt:before{content:"\e618"}.ti-reload:before{content:"\e619"}.ti-plus:before{content:"\e61a"}.ti-pin:before{content:"\e61b"}.ti-pencil:before{content:"\e61c"}.ti-pencil-alt:before{content:"\e61d"}.ti-paint-roller:before{content:"\e61e"}.ti-paint-bucket:before{content:"\e61f"}.ti-na:before{content:"\e620"}.ti-mobile:before{content:"\e621"}.ti-minus:before{content:"\e622"}.ti-medall:before{content:"\e623"}.ti-medall-alt:before{content:"\e624"}.ti-marker:before{content:"\e625"}.ti-marker-alt:before{content:"\e626"}.ti-arrow-up:before{content:"\e627"}.ti-arrow-right:before{content:"\e628"}.ti-arrow-left:before{content:"\e629"}.ti-arrow-down:before{content:"\e62a"}.ti-lock:before{content:"\e62b"}.ti-location-arrow:before{content:"\e62c"}.ti-link:before{content:"\e62d"}.ti-layout:before{content:"\e62e"}.ti-layers:before{content:"\e62f"}.ti-layers-alt:before{content:"\e630"}.ti-key:before{content:"\e631"}.ti-import:before{content:"\e632"}.ti-image:before{content:"\e633"}.ti-heart:before{content:"\e634"}.ti-heart-broken:before{content:"\e635"}.ti-hand-stop:before{content:"\e636"}.ti-hand-open:before{content:"\e637"}.ti-hand-drag:before{content:"\e638"}.ti-folder:before{content:"\e639"}.ti-flag:before{content:"\e63a"}.ti-flag-alt:before{content:"\e63b"}.ti-flag-alt-2:before{content:"\e63c"}.ti-eye:before{content:"\e63d"}.ti-export:before{content:"\e63e"}.ti-exchange-vertical:before{content:"\e63f"}.ti-desktop:before{content:"\e640"}.ti-cup:before{content:"\e641"}.ti-crown:before{content:"\e642"}.ti-comments:before{content:"\e643"}.ti-comment:before{content:"\e644"}.ti-comment-alt:before{content:"\e645"}.ti-close:before{content:"\e646"}.ti-clip:before{content:"\e647"}.ti-angle-up:before{content:"\e648"}.ti-angle-right:before{content:"\e649"}.ti-angle-left:before{content:"\e64a"}.ti-angle-down:before{content:"\e64b"}.ti-check:before{content:"\e64c"}.ti-check-box:before{content:"\e64d"}.ti-camera:before{content:"\e64e"}.ti-announcement:before{content:"\e64f"}.ti-brush:before{content:"\e650"}.ti-briefcase:before{content:"\e651"}.ti-bolt:before{content:"\e652"}.ti-bolt-alt:before{content:"\e653"}.ti-blackboard:before{content:"\e654"}.ti-bag:before{content:"\e655"}.ti-move:before{content:"\e656"}.ti-arrows-vertical:before{content:"\e657"}.ti-arrows-horizontal:before{content:"\e658"}.ti-fullscreen:before{content:"\e659"}.ti-arrow-top-right:before{content:"\e65a"}.ti-arrow-top-left:before{content:"\e65b"}.ti-arrow-circle-up:before{content:"\e65c"}.ti-arrow-circle-right:before{content:"\e65d"}.ti-arrow-circle-left:before{content:"\e65e"}.ti-arrow-circle-down:before{content:"\e65f"}.ti-angle-double-up:before{content:"\e660"}.ti-angle-double-right:before{content:"\e661"}.ti-angle-double-left:before{content:"\e662"}.ti-angle-double-down:before{content:"\e663"}.ti-zip:before{content:"\e664"}.ti-world:before{content:"\e665"}.ti-wheelchair:before{content:"\e666"}.ti-view-list:before{content:"\e667"}.ti-view-list-alt:before{content:"\e668"}.ti-view-grid:before{content:"\e669"}.ti-uppercase:before{content:"\e66a"}.ti-upload:before{content:"\e66b"}.ti-underline:before{content:"\e66c"}.ti-truck:before{content:"\e66d"}.ti-timer:before{content:"\e66e"}.ti-ticket:before{content:"\e66f"}.ti-thumb-up:before{content:"\e670"}.ti-thumb-down:before{content:"\e671"}.ti-text:before{content:"\e672"}.ti-stats-up:before{content:"\e673"}.ti-stats-down:before{content:"\e674"}.ti-split-v:before{content:"\e675"}.ti-split-h:before{content:"\e676"}.ti-smallcap:before{content:"\e677"}.ti-shine:before{content:"\e678"}.ti-shift-right:before{content:"\e679"}.ti-shift-left:before{content:"\e67a"}.ti-shield:before{content:"\e67b"}.ti-notepad:before{content:"\e67c"}.ti-server:before{content:"\e67d"}.ti-quote-right:before{content:"\e67e"}.ti-quote-left:before{content:"\e67f"}.ti-pulse:before{content:"\e680"}.ti-printer:before{content:"\e681"}.ti-power-off:before{content:"\e682"}.ti-plug:before{content:"\e683"}.ti-pie-chart:before{content:"\e684"}.ti-paragraph:before{content:"\e685"}.ti-panel:before{content:"\e686"}.ti-package:before{content:"\e687"}.ti-music:before{content:"\e688"}.ti-music-alt:before{content:"\e689"}.ti-mouse:before{content:"\e68a"}.ti-mouse-alt:before{content:"\e68b"}.ti-money:before{content:"\e68c"}.ti-microphone:before{content:"\e68d"}.ti-menu:before{content:"\e68e"}.ti-menu-alt:before{content:"\e68f"}.ti-map:before{content:"\e690"}.ti-map-alt:before{content:"\e691"}.ti-loop:before{content:"\e692"}.ti-location-pin:before{content:"\e693"}.ti-list:before{content:"\e694"}.ti-light-bulb:before{content:"\e695"}.ti-Italic:before{content:"\e696"}.ti-info:before{content:"\e697"}.ti-infinite:before{content:"\e698"}.ti-id-badge:before{content:"\e699"}.ti-hummer:before{content:"\e69a"}.ti-home:before{content:"\e69b"}.ti-help:before{content:"\e69c"}.ti-headphone:before{content:"\e69d"}.ti-harddrives:before{content:"\e69e"}.ti-harddrive:before{content:"\e69f"}.ti-gift:before{content:"\e6a0"}.ti-game:before{content:"\e6a1"}.ti-filter:before{content:"\e6a2"}.ti-files:before{content:"\e6a3"}.ti-file:before{content:"\e6a4"}.ti-eraser:before{content:"\e6a5"}.ti-envelope:before{content:"\e6a6"}.ti-download:before{content:"\e6a7"}.ti-direction:before{content:"\e6a8"}.ti-direction-alt:before{content:"\e6a9"}.ti-dashboard:before{content:"\e6aa"}.ti-control-stop:before{content:"\e6ab"}.ti-control-shuffle:before{content:"\e6ac"}.ti-control-play:before{content:"\e6ad"}.ti-control-pause:before{content:"\e6ae"}.ti-control-forward:before{content:"\e6af"}.ti-control-backward:before{content:"\e6b0"}.ti-cloud:before{content:"\e6b1"}.ti-cloud-up:before{content:"\e6b2"}.ti-cloud-down:before{content:"\e6b3"}.ti-clipboard:before{content:"\e6b4"}.ti-car:before{content:"\e6b5"}.ti-calendar:before{content:"\e6b6"}.ti-book:before{content:"\e6b7"}.ti-bell:before{content:"\e6b8"}.ti-basketball:before{content:"\e6b9"}.ti-bar-chart:before{content:"\e6ba"}.ti-bar-chart-alt:before{content:"\e6bb"}.ti-back-right:before{content:"\e6bc"}.ti-back-left:before{content:"\e6bd"}.ti-arrows-corner:before{content:"\e6be"}.ti-archive:before{content:"\e6bf"}.ti-anchor:before{content:"\e6c0"}.ti-align-right:before{content:"\e6c1"}.ti-align-left:before{content:"\e6c2"}.ti-align-justify:before{content:"\e6c3"}.ti-align-center:before{content:"\e6c4"}.ti-alert:before{content:"\e6c5"}.ti-alarm-clock:before{content:"\e6c6"}.ti-agenda:before{content:"\e6c7"}.ti-write:before{content:"\e6c8"}.ti-window:before{content:"\e6c9"}.ti-widgetized:before{content:"\e6ca"}.ti-widget:before{content:"\e6cb"}.ti-widget-alt:before{content:"\e6cc"}.ti-wallet:before{content:"\e6cd"}.ti-video-clapper:before{content:"\e6ce"}.ti-video-camera:before{content:"\e6cf"}.ti-vector:before{content:"\e6d0"}.ti-themify-logo:before{content:"\e6d1"}.ti-themify-favicon:before{content:"\e6d2"}.ti-themify-favicon-alt:before{content:"\e6d3"}.ti-support:before{content:"\e6d4"}.ti-stamp:before{content:"\e6d5"}.ti-split-v-alt:before{content:"\e6d6"}.ti-slice:before{content:"\e6d7"}.ti-shortcode:before{content:"\e6d8"}.ti-shift-right-alt:before{content:"\e6d9"}.ti-shift-left-alt:before{content:"\e6da"}.ti-ruler-alt-2:before{content:"\e6db"}.ti-receipt:before{content:"\e6dc"}.ti-pin2:before{content:"\e6dd"}.ti-pin-alt:before{content:"\e6de"}.ti-pencil-alt2:before{content:"\e6df"}.ti-palette:before{content:"\e6e0"}.ti-more:before{content:"\e6e1"}.ti-more-alt:before{content:"\e6e2"}.ti-microphone-alt:before{content:"\e6e3"}.ti-magnet:before{content:"\e6e4"}.ti-line-double:before{content:"\e6e5"}.ti-line-dotted:before{content:"\e6e6"}.ti-line-dashed:before{content:"\e6e7"}.ti-layout-width-full:before{content:"\e6e8"}.ti-layout-width-default:before{content:"\e6e9"}.ti-layout-width-default-alt:before{content:"\e6ea"}.ti-layout-tab:before{content:"\e6eb"}.ti-layout-tab-window:before{content:"\e6ec"}.ti-layout-tab-v:before{content:"\e6ed"}.ti-layout-tab-min:before{content:"\e6ee"}.ti-layout-slider:before{content:"\e6ef"}.ti-layout-slider-alt:before{content:"\e6f0"}.ti-layout-sidebar-right:before{content:"\e6f1"}.ti-layout-sidebar-none:before{content:"\e6f2"}.ti-layout-sidebar-left:before{content:"\e6f3"}.ti-layout-placeholder:before{content:"\e6f4"}.ti-layout-menu:before{content:"\e6f5"}.ti-layout-menu-v:before{content:"\e6f6"}.ti-layout-menu-separated:before{content:"\e6f7"}.ti-layout-menu-full:before{content:"\e6f8"}.ti-layout-media-right-alt:before{content:"\e6f9"}.ti-layout-media-right:before{content:"\e6fa"}.ti-layout-media-overlay:before{content:"\e6fb"}.ti-layout-media-overlay-alt:before{content:"\e6fc"}.ti-layout-media-overlay-alt-2:before{content:"\e6fd"}.ti-layout-media-left-alt:before{content:"\e6fe"}.ti-layout-media-left:before{content:"\e6ff"}.ti-layout-media-center-alt:before{content:"\e700"}.ti-layout-media-center:before{content:"\e701"}.ti-layout-list-thumb:before{content:"\e702"}.ti-layout-list-thumb-alt:before{content:"\e703"}.ti-layout-list-post:before{content:"\e704"}.ti-layout-list-large-image:before{content:"\e705"}.ti-layout-line-solid:before{content:"\e706"}.ti-layout-grid4:before{content:"\e707"}.ti-layout-grid3:before{content:"\e708"}.ti-layout-grid2:before{content:"\e709"}.ti-layout-grid2-thumb:before{content:"\e70a"}.ti-layout-cta-right:before{content:"\e70b"}.ti-layout-cta-left:before{content:"\e70c"}.ti-layout-cta-center:before{content:"\e70d"}.ti-layout-cta-btn-right:before{content:"\e70e"}.ti-layout-cta-btn-left:before{content:"\e70f"}.ti-layout-column4:before{content:"\e710"}.ti-layout-column3:before{content:"\e711"}.ti-layout-column2:before{content:"\e712"}.ti-layout-accordion-separated:before{content:"\e713"}.ti-layout-accordion-merged:before{content:"\e714"}.ti-layout-accordion-list:before{content:"\e715"}.ti-ink-pen:before{content:"\e716"}.ti-info-alt:before{content:"\e717"}.ti-help-alt:before{content:"\e718"}.ti-headphone-alt:before{content:"\e719"}.ti-hand-point-up:before{content:"\e71a"}.ti-hand-point-right:before{content:"\e71b"}.ti-hand-point-left:before{content:"\e71c"}.ti-hand-point-down:before{content:"\e71d"}.ti-gallery:before{content:"\e71e"}.ti-face-smile:before{content:"\e71f"}.ti-face-sad:before{content:"\e720"}.ti-credit-card:before{content:"\e721"}.ti-control-skip-forward:before{content:"\e722"}.ti-control-skip-backward:before{content:"\e723"}.ti-control-record:before{content:"\e724"}.ti-control-eject:before{content:"\e725"}.ti-comments-smiley:before{content:"\e726"}.ti-brush-alt:before{content:"\e727"}.ti-youtube:before{content:"\e728"}.ti-vimeo:before{content:"\e729"}.ti-twitter:before{content:"\e72a"}.ti-time:before{content:"\e72b"}.ti-tumblr:before{content:"\e72c"}.ti-skype:before{content:"\e72d"}.ti-share:before{content:"\e72e"}.ti-share-alt:before{content:"\e72f"}.ti-rocket:before{content:"\e730"}.ti-pinterest:before{content:"\e731"}.ti-new-window:before{content:"\e732"}.ti-microsoft:before{content:"\e733"}.ti-list-ol:before{content:"\e734"}.ti-linkedin:before{content:"\e735"}.ti-layout-sidebar-2:before{content:"\e736"}.ti-layout-grid4-alt:before{content:"\e737"}.ti-layout-grid3-alt:before{content:"\e738"}.ti-layout-grid2-alt:before{content:"\e739"}.ti-layout-column4-alt:before{content:"\e73a"}.ti-layout-column3-alt:before{content:"\e73b"}.ti-layout-column2-alt:before{content:"\e73c"}.ti-instagram:before{content:"\e73d"}.ti-google:before{content:"\e73e"}.ti-github:before{content:"\e73f"}.ti-flickr:before{content:"\e740"}.ti-facebook:before{content:"\e741"}.ti-dropbox:before{content:"\e742"}.ti-dribbble:before{content:"\e743"}.ti-apple:before{content:"\e744"}.ti-android:before{content:"\e745"}.ti-save:before{content:"\e746"}.ti-save-alt:before{content:"\e747"}.ti-yahoo:before{content:"\e748"}.ti-wordpress:before{content:"\e749"}.ti-vimeo-alt:before{content:"\e74a"}.ti-twitter-alt:before{content:"\e74b"}.ti-tumblr-alt:before{content:"\e74c"}.ti-trello:before{content:"\e74d"}.ti-stack-overflow:before{content:"\e74e"}.ti-soundcloud:before{content:"\e74f"}.ti-sharethis:before{content:"\e750"}.ti-sharethis-alt:before{content:"\e751"}.ti-reddit:before{content:"\e752"}.ti-pinterest-alt:before{content:"\e753"}.ti-microsoft-alt:before{content:"\e754"}.ti-linux:before{content:"\e755"}.ti-jsfiddle:before{content:"\e756"}.ti-joomla:before{content:"\e757"}.ti-html5:before{content:"\e758"}.ti-flickr-alt:before{content:"\e759"}.ti-email:before{content:"\e75a"}.ti-drupal:before{content:"\e75b"}.ti-dropbox-alt:before{content:"\e75c"}.ti-css3:before{content:"\e75d"}.ti-rss:before{content:"\e75e"}.ti-rss-alt:before{content:"\e75f"} -------------------------------------------------------------------------------- /theme/portfolio.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | Kross | Portfolio Template 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 |
40 | 63 |
64 | 65 | 66 |
67 |
68 |
69 |

Portfolio

70 |
71 |
72 | 73 | illustrations 74 | illustrations 75 | illustrations 76 | illustrations 77 | illustrations 78 | illustrations 79 | illustrations 80 |
81 | 82 | 83 | 84 |
85 |
86 | 87 |
88 | 91 | 94 | 97 | 100 |
101 | 102 | 103 |
104 |
105 |
106 | portfolio-image 107 |
108 |
109 | view project 110 |
111 |
112 |
113 |
114 |
115 |
116 | portfolio-image 117 |
118 |
119 | view project 120 |
121 |
122 |
123 |
124 |
125 |
126 | portfolio-image 127 |
128 |
129 | view project 130 |
131 |
132 |
133 |
134 |
135 |
136 | portfolio-image 137 |
138 |
139 | view project 140 |
141 |
142 |
143 |
144 |
145 |
146 | portfolio-image 147 |
148 |
149 | view project 150 |
151 |
152 |
153 |
154 |
155 |
156 | portfolio-image 157 |
158 |
159 | view project 160 |
161 |
162 |
163 |
164 |
165 |
166 | portfolio-image 167 |
168 |
169 | view project 170 |
171 |
172 |
173 |
174 |
176 |
177 | portfolio-image 178 |
179 |
180 | view project 181 |
182 |
183 |
184 |
185 |
186 |
187 | portfolio-image 188 |
189 |
190 | view project 191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 | 199 | 200 | 201 |
202 |
203 |
204 |

My Clients

205 |
206 |
207 | client-logo 209 | client-logo 211 | client-logo 213 | client-logo 215 | client-logo 217 | client-logo 219 | client-logo 221 | client-logo 223 | client-logo 225 | client-logo 227 |
228 |
229 |
230 | 231 | 232 | 233 | 262 | 263 | 264 | 265 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | -------------------------------------------------------------------------------- /theme/blog-single.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 11 | 12 | 13 | 14 | Kross | Portfolio Template 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 |
40 | 63 |
64 | 65 | 66 | 67 |
68 |
69 |
70 |

Blog Single

71 |
72 |
73 | 74 | illustrations 75 | illustrations 76 | illustrations 77 | illustrations 78 | illustrations 79 | illustrations 80 | illustrations 81 |
82 | 83 | 84 |
85 |
86 |

What should be the proper purpose of UI and UX design?

87 |

Published on May 26, 2017 by uixgeek on UX design

89 |
90 | post-thumb 91 | Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore 92 | et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip 93 | ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu 94 | fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt 95 | mollit anim id est laborum. 96 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 97 | dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex 98 | ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat 99 | nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit 100 | anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque 101 | laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae 102 | dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia 103 | consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est.

104 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 105 | dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex 106 | ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat 107 | nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit 108 | anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque 109 | laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae 110 | dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia 111 | consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem 112 | ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut 113 | labore et dolore magnam aliquam quaerat voluptatem.

114 |
Dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi 115 | tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem.
116 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et 117 | dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex 118 | ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat 119 | nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit 120 | anim id est laborum. Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque 121 | laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae 122 | dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia 123 | consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem 124 | ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut 125 | labore et dolore magnam aliquam quaerat voluptatem.

126 |
127 |
128 |
129 | 130 |
131 |
132 |

Comments 03

133 |
134 |
135 |
136 |

137 | 138 |

139 |
140 |
141 |
Carole Marvin.
142 |

15 january 2015 At 10:30 pm

143 |

Ne erat velit invidunt his. Eum in dicta veniam interesset, harum fuisset te nam ea cu lupta 144 | definitionem.

145 | Reply 146 |
147 |
148 |

149 | 150 |

151 |
152 |
153 |
Jaquan Rolfson.
154 |

15 january 2015 At 10:30 pm

155 |

Ne erat velit invidunt his. Eum in dicta veniam interesset, harum fuisset te nam ea cu lupta 156 | definitionem.

157 | Reply 158 |
159 |
160 |
161 |
162 |
163 |
164 |

165 | 166 |

167 |
168 |
169 |
Bruce Bernier.
170 |

15 january 2015 At 10:30 pm

171 |

Ne erat velit invidunt his. Eum in dicta veniam interesset, harum fuisset te nam ea cu lupta 172 | definitionem.

173 | Reply 174 |
175 |
176 |
177 |

Leave a Comment

178 |
179 |
180 | 181 | 182 | 183 |
184 |
185 | 186 | 187 |
188 |
189 |
190 |
191 | 192 | 193 |
194 |
195 |
196 |

Similar Stories

197 |
198 |
199 |
200 |
201 |
202 | Placeholder image 203 |
204 |
205 |

Amazon increase income 1.5 Million 206 |

207 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 208 | incididunt ut labore et 209 | dolore magna aliqua.

210 | Read More 211 |
212 |
213 |
214 |
215 |
216 |
217 | Placeholder image 218 |
219 |
220 |

Amazon increase income 1.5 Million 221 |

222 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 223 | incididunt ut labore et 224 | dolore magna aliqua.

225 | Read More 226 |
227 |
228 |
229 |
230 |
231 |
232 | Placeholder image 233 |
234 |
235 |

Amazon increase income 1.5 Million 236 |

237 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor 238 | incididunt ut labore et 239 | dolore magna aliqua.

240 | Read More 241 |
242 |
243 |
244 |
245 |
246 |
247 | 248 | 249 | 250 | 279 | 280 | 281 | 282 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | --------------------------------------------------------------------------------