├── CNAME ├── assets ├── css │ ├── colors │ │ ├── defauld.css │ │ ├── slate.css │ │ ├── yellow.css │ │ ├── blue.css │ │ ├── green.css │ │ ├── orange.css │ │ ├── purple.css │ │ └── blue-munsell.css │ ├── demo.css │ └── responsive.css ├── images │ ├── hero.png │ ├── logo.png │ ├── pr-0.jif │ ├── pr-1.jif │ ├── ab-img.png │ └── map-color-overlay.png ├── fonts │ └── Vazir-Regular.ttf ├── icons │ └── font-awesome-4.7.0 │ │ ├── fonts │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ │ └── css │ │ └── font-awesome.min.css ├── js │ ├── demo.js │ ├── styleswitcher.js │ └── custom-scripts.js └── plugins │ ├── css │ ├── owl.css │ └── jquery.fancybox.min.css │ └── js │ ├── validator.min.js │ ├── jquery.nav.js │ ├── wow.min.js │ ├── popper.min.js │ ├── circle-progress.js │ └── jquery.mixitup.min.js ├── .gitattributes └── index.html /CNAME: -------------------------------------------------------------------------------- 1 | khoubrouy.ir -------------------------------------------------------------------------------- /assets/css/colors/defauld.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /assets/images/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahdikhoubrouy/webpage/HEAD/assets/images/hero.png -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahdikhoubrouy/webpage/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/pr-0.jif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahdikhoubrouy/webpage/HEAD/assets/images/pr-0.jif -------------------------------------------------------------------------------- /assets/images/pr-1.jif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahdikhoubrouy/webpage/HEAD/assets/images/pr-1.jif -------------------------------------------------------------------------------- /assets/images/ab-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahdikhoubrouy/webpage/HEAD/assets/images/ab-img.png -------------------------------------------------------------------------------- /assets/fonts/Vazir-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahdikhoubrouy/webpage/HEAD/assets/fonts/Vazir-Regular.ttf -------------------------------------------------------------------------------- /assets/images/map-color-overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahdikhoubrouy/webpage/HEAD/assets/images/map-color-overlay.png -------------------------------------------------------------------------------- /assets/icons/font-awesome-4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahdikhoubrouy/webpage/HEAD/assets/icons/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/icons/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahdikhoubrouy/webpage/HEAD/assets/icons/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/icons/font-awesome-4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahdikhoubrouy/webpage/HEAD/assets/icons/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/icons/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mahdikhoubrouy/webpage/HEAD/assets/icons/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/js/demo.js: -------------------------------------------------------------------------------- 1 | /* ================================= 2 | === EXPAND COLLAPSE ==== 3 | =================================== */ 4 | $(document).ready(function(){ 5 | $('#toggle-switcher').click(function(){ 6 | if($(this).hasClass('open')){ 7 | $(this).removeClass('open'); 8 | $('#switch-style').animate({'left':'-220px'}); 9 | }else{ 10 | $(this).addClass('open'); 11 | $('#switch-style').animate({'left':'0'}); 12 | } 13 | }); 14 | }); -------------------------------------------------------------------------------- /assets/js/styleswitcher.js: -------------------------------------------------------------------------------- 1 | function setActiveStyleSheet(title) { var i, a, main; for(i=0; (a = document.getElementsByTagName("link")[i]); i++) { if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) { a.disabled = true; if(a.getAttribute("title") == title) a.disabled = false; } } } function getActiveStyleSheet() { var i, a; for(i=0; (a = document.getElementsByTagName("link")[i]); i++) { if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && !a.disabled) return a.getAttribute("title"); } return null; } function getPreferredStyleSheet() { var i, a; for(i=0; (a = document.getElementsByTagName("link")[i]); i++) { if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("rel").indexOf("alt") == -1 && a.getAttribute("title") ) return a.getAttribute("title"); } return null; } function createCookie(name,value,days) { if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)); var expires = "; expires="+date.toGMTString(); } else expires = ""; document.cookie = name+"="+value+expires+"; path=/"; } function readCookie(name) { var nameEQ = name + "="; var ca = document.cookie.split(';'); for(var i=0;i < ca.length;i++) { var c = ca[i]; while (c.charAt(0)==' ') c = c.substring(1,c.length); if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length); } return null; } window.onload = function(e) { var cookie = readCookie("style"); var title = cookie ? cookie : getPreferredStyleSheet(); setActiveStyleSheet(title); } window.onunload = function(e) { var title = getActiveStyleSheet(); createCookie("style", title, 365); } var cookie = readCookie("style"); var title = cookie ? cookie : getPreferredStyleSheet(); setActiveStyleSheet(title); -------------------------------------------------------------------------------- /assets/css/demo.css: -------------------------------------------------------------------------------- 1 | .demo-style-switch { 2 | position: fixed; 3 | z-index: 9999; 4 | top: 100px; 5 | left: -220px; 6 | background: #FFFFFF; 7 | } 8 | .demo-style-switch:hover { 9 | opacity: 1 !important; 10 | } 11 | .demo-style-switch .switched-options { 12 | position: relative; 13 | width: 220px; 14 | text-align: left; 15 | padding: 1px 14px; 16 | -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3); 17 | box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3); 18 | } 19 | .demo-style-switch .config-title { 20 | text-transform: capitalize; 21 | font-weight: 700; 22 | font-size: 16px; 23 | color: #000; 24 | border-bottom: 1px dotted #CCCCCC; 25 | border-top: 1px dotted #CCCCCC; 26 | margin-bottom: 5px; 27 | } 28 | .demo-style-switch ul { 29 | margin-bottom: 4px; 30 | } 31 | .demo-style-switch ul .active { 32 | color: #005885; 33 | font-weight: 700; 34 | } 35 | .demo-style-switch ul .active a{ 36 | color: #005885; 37 | font-weight: 700; 38 | } 39 | .demo-style-switch ul .p { 40 | font-weight: 400; 41 | font-size: 12px; 42 | color: #CCC; 43 | margin-top: 10px; 44 | } 45 | .demo-style-switch ul li a { 46 | font-size: 14px; 47 | font-weight: 400; 48 | line-height: 24px; 49 | color: #808080; 50 | } 51 | .demo-style-switch ul li a:hover { 52 | color: #008ed6; 53 | } 54 | .demo-style-switch ul.styles { 55 | margin-top: 10px; 56 | } 57 | .demo-style-switch ul.styles li { 58 | display: inline-block; 59 | margin-right: 5px; 60 | } 61 | .demo-style-switch ul.styles li .blue, 62 | .demo-style-switch ul.styles li .blue-munsell, 63 | .demo-style-switch ul.styles li .green, 64 | .demo-style-switch ul.styles li .orange, 65 | .demo-style-switch ul.styles li .purple, 66 | .demo-style-switch ul.styles li .red, 67 | .demo-style-switch ul.styles li .slate, 68 | .demo-style-switch ul.styles li .yellow { 69 | width: 35px; 70 | height: 35px; 71 | border-radius: 50%; 72 | } 73 | .demo-style-switch ul.styles li .blue { 74 | background: #a97afd; 75 | } 76 | .demo-style-switch ul.styles li .blue-munsell { 77 | background: #2196F3; 78 | } 79 | .demo-style-switch ul.styles li .green { 80 | background: #4CAF50; 81 | } 82 | .demo-style-switch ul.styles li .orange { 83 | background: #ffa500; 84 | } 85 | .demo-style-switch ul.styles li .purple { 86 | background: #E91E63; 87 | } 88 | .demo-style-switch ul.styles li .red { 89 | background: #0dbda1; 90 | } 91 | .demo-style-switch ul.styles li .slate { 92 | background: #f6c; 93 | } 94 | .demo-style-switch ul.styles li .yellow { 95 | background: #188c91; 96 | } 97 | .demo-style-switch .switch-button { 98 | opacity: 1 !important; 99 | background: #FFF; 100 | padding: 10px; 101 | font-size: 24px; 102 | color: #272727 !important; 103 | position: absolute; 104 | overflow: hidden; 105 | right: -44px; 106 | top: -10; 107 | border-top-right-radius: 4px; 108 | border-bottom-right-radius: 4px; 109 | } 110 | .demo-style-switch .switch-button:hover { 111 | color: #008ed6; 112 | cursor: pointer; 113 | text-decoration: none; 114 | } 115 | 116 | .mh-demo-styles h4 { 117 | color: #202026cf; 118 | margin: 10px 0; 119 | text-align: left; 120 | font-size: 15px; 121 | font-weight: 500; 122 | } 123 | .mh-demo-styles ul{ 124 | margin-bottom: 12px; 125 | } 126 | .mh-demo-styles ul li{ 127 | display: inline-block; 128 | width: 49%; 129 | } 130 | .demo-style-switch ul li a img { 131 | border: 1px solid #000; 132 | 133 | } -------------------------------------------------------------------------------- /assets/css/colors/slate.css: -------------------------------------------------------------------------------- 1 | .new .navbar-toggler .icon, .new .navbar-toggler .icon::after, .new .navbar-toggler .icon::before { 2 | background-color: #f6c; 3 | } 4 | 5 | .white-vertion .page-item.active .page-link { 6 | color: #f6c; 7 | } 8 | 9 | .dark-vertion .page-item.active .page-link { 10 | color: #f6c; 11 | } 12 | 13 | .mh-header .navbar-nav li a:hover { 14 | color: #f6c; 15 | } 16 | 17 | .mh-experince .mh-education-deatils .mh-education-item h4 a { 18 | color: #f6c; 19 | } 20 | 21 | .mh-work .mh-experience-deatils .mh-work-item h4 a { 22 | color: #f6c; 23 | } 24 | 25 | .mh-home-2 .mh-header-info ul.mh-home-contact li:hover .fa { 26 | color: #f6c; 27 | } 28 | 29 | .mh-home .mh-header-info .mh-promo span { 30 | background-color: #f6c; 31 | } 32 | 33 | .mh-home .mh-header-info ul li:hover .fa { 34 | color: #f6c; 35 | } 36 | 37 | .mh-about-tag ul li span { 38 | border: 1px solid #f6c; 39 | } 40 | 41 | .mh-about-tag ul li span:hover { 42 | background-color: #f6c; 43 | } 44 | 45 | .mh-progress path:nth-child(2) { 46 | stroke: #f6c; 47 | } 48 | 49 | .candidatos .parcial .percentagem { 50 | background: #f6c; 51 | } 52 | 53 | .mh-experince .mh-education-deatils .mh-education-item .mh-eduyear { 54 | color: #f6c; 55 | } 56 | 57 | .mh-work .mh-experience-deatils .mh-work-item .mh-eduyear { 58 | color: #f6c; 59 | } 60 | 61 | .portfolio-nav ul li:hover { 62 | color: #f6c; 63 | } 64 | 65 | .portfolio-nav ul li.active { 66 | color: #f6c; 67 | } 68 | 69 | .mh-pricing .mh-pricing:hover .btn { 70 | background-color: #ff4dc4; 71 | } 72 | 73 | .mh-pricing .mh-pricing .fa { 74 | color: white; 75 | } 76 | 77 | .mh-pricing .mh-pricing h5 { 78 | color: #f6c; 79 | } 80 | 81 | .mh-blog .mh-blog-item .blog-inner h2 a { 82 | color: #fff; 83 | } 84 | 85 | .mh-blog .mh-blog-item .blog-inner a { 86 | color: #f6c; 87 | } 88 | 89 | .mh-blog .mh-blog-item h2 { 90 | color: #f6c; 91 | } 92 | 93 | .mh-blog .mh-blog-item h2 a { 94 | color: #f6c; 95 | } 96 | 97 | .mh-blog .mh-blog-item h2 a:hover { 98 | color: #ff5cc9; 99 | } 100 | 101 | .mh-testimonial .mh-client-item img { 102 | border: 5px solid #f6c; 103 | } 104 | 105 | .mh-testimonial .owl-controls .owl-dots .owl-dot { 106 | border: 1px solid #f6c; 107 | } 108 | 109 | .mh-testimonial .owl-controls .owl-dots .owl-dot.active { 110 | background-color: #f6c; 111 | } 112 | 113 | .mh-footer-address .mh-address-footer-item .each-icon .fa { 114 | border-color: #f6c; 115 | } 116 | 117 | .old .navbar-collapse { 118 | background-color: #f6c; 119 | } 120 | 121 | .old .navbar-header .navbar-toggler .icon-bar { 122 | background-color: #f6c; 123 | } 124 | 125 | .old .navbar-collapse { 126 | background-color: #f6c; 127 | } 128 | 129 | .new .navbar-collapse { 130 | background-color: #f6c; 131 | } 132 | 133 | .new .navbar-header .navbar-toggler .icon-bar { 134 | background-color: #f6c; 135 | } 136 | 137 | .new .navbar-collapse { 138 | background-color: #f6c; 139 | } 140 | 141 | .portfolio-nav ul li.current span { 142 | border-bottom: 2px solid #f6c; 143 | } 144 | 145 | .mh-project-gallery .grid-item figure:hover figcaption { 146 | background: rgba(255, 102, 204, 0.9); 147 | } 148 | 149 | .mh-featured-project .mh-featured-item .mh-featured-project-content .project-category { 150 | color: #f6c; 151 | } 152 | 153 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot { 154 | border: 1px solid #f6c; 155 | } 156 | 157 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot.active { 158 | background-color: #f6c; 159 | } 160 | 161 | .mh-service .mh-service-item a { 162 | color: #f6c; 163 | } 164 | 165 | .mh-pagination .page-link:hover { 166 | color: #f6c; 167 | } 168 | 169 | .mh-author-info .social-icon li a:hover { 170 | color: #f6c; 171 | } 172 | 173 | .mh-blog-category ul li a:hover { 174 | color: #f6c; 175 | } 176 | 177 | .mh-blog-next-prev-post a { 178 | color: #f6c; 179 | } 180 | 181 | .comment-deatils span { 182 | color: #f6c; 183 | } 184 | 185 | .btn.btn-fill { 186 | background-color: #f6c; 187 | } 188 | 189 | .mh-pricing .mh-pricing .fa { 190 | color: #f6c; 191 | } 192 | /*# sourceMappingURL=slate.css.map */ -------------------------------------------------------------------------------- /assets/css/colors/yellow.css: -------------------------------------------------------------------------------- 1 | .new .navbar-toggler .icon, .new .navbar-toggler .icon::after, .new .navbar-toggler .icon::before { 2 | background-color: #188c91; 3 | } 4 | 5 | .white-vertion .page-item.active .page-link { 6 | color: #188c91; 7 | } 8 | 9 | .dark-vertion .page-item.active .page-link { 10 | color: #188c91; 11 | } 12 | 13 | .mh-header .navbar-nav li a:hover { 14 | color: #188c91; 15 | } 16 | 17 | .mh-home-2 .mh-header-info ul.mh-home-contact li:hover .fa { 18 | color: #188c91; 19 | } 20 | 21 | .mh-home .mh-header-info .mh-promo span { 22 | background-color: #188c91; 23 | } 24 | 25 | .mh-home .mh-header-info ul li:hover .fa { 26 | color: #188c91; 27 | } 28 | 29 | .mh-about-tag ul li span { 30 | border: 1px solid #188c91; 31 | } 32 | 33 | .mh-about-tag ul li span:hover { 34 | background-color: #188c91; 35 | } 36 | 37 | .mh-progress path:nth-child(2) { 38 | stroke: #188c91; 39 | } 40 | 41 | .candidatos .parcial .percentagem { 42 | background: #188c91; 43 | } 44 | 45 | .mh-experince .mh-education-deatils .mh-education-item .mh-eduyear { 46 | color: #188c91; 47 | } 48 | 49 | .mh-work .mh-experience-deatils .mh-work-item .mh-eduyear { 50 | color: #188c91; 51 | } 52 | 53 | .portfolio-nav ul li:hover { 54 | color: #188c91; 55 | } 56 | 57 | .portfolio-nav ul li.active { 58 | color: #188c91; 59 | } 60 | 61 | .mh-pricing .mh-pricing:hover .btn { 62 | background-color: #14777b; 63 | } 64 | 65 | .mh-pricing .mh-pricing .fa { 66 | color: #5edfe4; 67 | } 68 | 69 | .mh-pricing .mh-pricing h5 { 70 | color: #188c91; 71 | } 72 | 73 | .mh-blog .mh-blog-item .blog-inner a { 74 | color: #188c91; 75 | } 76 | 77 | .mh-blog .mh-blog-item h2 { 78 | color: #188c91; 79 | } 80 | 81 | .mh-blog .mh-blog-item h2 a { 82 | color: #188c91; 83 | } 84 | 85 | .mh-blog .mh-blog-item h2 a:hover { 86 | color: #178488; 87 | } 88 | 89 | .mh-testimonial .mh-client-item img { 90 | border: 5px solid #188c91; 91 | } 92 | 93 | .mh-testimonial .owl-controls .owl-dots .owl-dot { 94 | border: 1px solid #188c91; 95 | } 96 | 97 | .mh-testimonial .owl-controls .owl-dots .owl-dot.active { 98 | background-color: #188c91; 99 | } 100 | 101 | .mh-footer-address .mh-address-footer-item .each-icon .fa { 102 | border-color: #188c91; 103 | } 104 | 105 | .old .navbar-collapse { 106 | background-color: #188c91; 107 | } 108 | 109 | .old .navbar-header .navbar-toggler .icon-bar { 110 | background-color: #188c91; 111 | } 112 | 113 | .old .navbar-collapse { 114 | background-color: #188c91; 115 | } 116 | 117 | .new .navbar-collapse { 118 | background-color: #188c91; 119 | } 120 | 121 | .new .navbar-header .navbar-toggler .icon-bar { 122 | background-color: #188c91; 123 | } 124 | 125 | .new .navbar-collapse { 126 | background-color: #188c91; 127 | } 128 | 129 | .portfolio-nav ul li.current span { 130 | border-bottom: 2px solid #188c91; 131 | } 132 | 133 | .mh-project-gallery .grid-item figure:hover figcaption { 134 | background: rgba(24, 140, 145, 0.9); 135 | } 136 | 137 | .mh-featured-project .mh-featured-item .mh-featured-project-content .project-category { 138 | color: #188c91; 139 | } 140 | 141 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot { 142 | border: 1px solid #188c91; 143 | } 144 | 145 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot.active { 146 | background-color: #188c91; 147 | } 148 | 149 | .mh-service .mh-service-item a { 150 | color: #188c91; 151 | } 152 | 153 | .mh-pagination .page-link:hover { 154 | color: #188c91; 155 | } 156 | 157 | .mh-author-info .social-icon li a:hover { 158 | color: #188c91; 159 | } 160 | 161 | .mh-blog-category ul li a:hover { 162 | color: #188c91; 163 | } 164 | 165 | .mh-experince .mh-education-deatils .mh-education-item h4 a { 166 | color: #188c91; 167 | } 168 | 169 | .mh-work .mh-experience-deatils .mh-work-item h4 a { 170 | color: #188c91; 171 | } 172 | 173 | .mh-blog-next-prev-post a { 174 | color: #188c91; 175 | } 176 | 177 | .comment-deatils span { 178 | color: #188c91; 179 | } 180 | 181 | .btn.btn-fill { 182 | background-color: #188c91; 183 | } 184 | 185 | .mh-pricing .mh-pricing .fa { 186 | color: #188c91; 187 | } 188 | /*# sourceMappingURL=yellow.css.map */ -------------------------------------------------------------------------------- /assets/css/colors/blue.css: -------------------------------------------------------------------------------- 1 | .new .navbar-toggler .icon, .new .navbar-toggler .icon::after, .new .navbar-toggler .icon::before { 2 | background-color: #a97afd; 3 | } 4 | 5 | .white-vertion .page-item.active .page-link { 6 | color: #a97afd; 7 | } 8 | 9 | .dark-vertion .page-item.active .page-link { 10 | color: #a97afd; 11 | } 12 | 13 | .mh-header .navbar-nav li a:hover { 14 | color: #a97afd; 15 | } 16 | 17 | .mh-home-2 .mh-header-info ul.mh-home-contact li:hover .fa { 18 | color: #a97afd; 19 | } 20 | 21 | .mh-home .mh-header-info .mh-promo span { 22 | background-color: #a97afd; 23 | } 24 | 25 | .mh-home .mh-header-info ul li:hover .fa { 26 | color: #a97afd; 27 | } 28 | 29 | .mh-about-tag ul li span { 30 | border: 1px solid #a97afd; 31 | } 32 | 33 | .mh-about-tag ul li span:hover { 34 | background-color: #a97afd; 35 | } 36 | 37 | .mh-progress path:nth-child(2) { 38 | stroke: #a97afd; 39 | } 40 | 41 | .candidatos .parcial .percentagem { 42 | background: #a97afd; 43 | } 44 | 45 | .mh-experince .mh-education-deatils .mh-education-item .mh-eduyear { 46 | color: #a97afd; 47 | } 48 | 49 | .mh-work .mh-experience-deatils .mh-work-item .mh-eduyear { 50 | color: #a97afd; 51 | } 52 | 53 | .mh-experince .mh-education-deatils .mh-education-item h4 a { 54 | color: #a97afd; 55 | } 56 | 57 | .mh-work .mh-experience-deatils .mh-work-item h4 a { 58 | color: #a97afd; 59 | } 60 | 61 | .portfolio-nav ul li:hover { 62 | color: #a97afd; 63 | } 64 | 65 | .portfolio-nav ul li.active { 66 | color: #a97afd; 67 | } 68 | 69 | .mh-pricing .mh-pricing:hover .btn { 70 | background-color: #9961fd; 71 | } 72 | 73 | .mh-pricing .mh-pricing .fa { 74 | color: white; 75 | } 76 | 77 | .mh-pricing .mh-pricing h5 { 78 | color: #a97afd; 79 | } 80 | 81 | .mh-blog .mh-blog-item .blog-inner h2 a { 82 | color: #fff; 83 | } 84 | 85 | .mh-blog .mh-blog-item .blog-inner a { 86 | color: #a97afd; 87 | } 88 | 89 | .mh-blog .mh-blog-item h2 { 90 | color: #a97afd; 91 | } 92 | 93 | .mh-blog .mh-blog-item h2 a { 94 | color: #a97afd; 95 | } 96 | 97 | .mh-blog .mh-blog-item h2 a:hover { 98 | color: #a370fd; 99 | } 100 | 101 | .mh-testimonial .mh-client-item img { 102 | border: 5px solid #a97afd; 103 | } 104 | 105 | .mh-testimonial .owl-controls .owl-dots .owl-dot { 106 | border: 1px solid #a97afd; 107 | } 108 | 109 | .mh-testimonial .owl-controls .owl-dots .owl-dot.active { 110 | background-color: #a97afd; 111 | } 112 | 113 | .mh-footer-address .mh-address-footer-item .each-icon .fa { 114 | border-color: #a97afd; 115 | } 116 | 117 | .old .navbar-collapse { 118 | background-color: #a97afd; 119 | } 120 | 121 | .old .navbar-header .navbar-toggler .icon-bar { 122 | background-color: #a97afd; 123 | } 124 | 125 | .old .navbar-collapse { 126 | background-color: #a97afd; 127 | } 128 | 129 | .new .navbar-collapse { 130 | background-color: #a97afd; 131 | } 132 | 133 | .new .navbar-header .navbar-toggler .icon-bar { 134 | background-color: #a97afd; 135 | } 136 | 137 | .new .navbar-collapse { 138 | background-color: #a97afd; 139 | } 140 | 141 | .portfolio-nav ul li.current span { 142 | border-bottom: 2px solid #a97afd; 143 | } 144 | 145 | .mh-project-gallery .grid-item figure:hover figcaption { 146 | background: rgba(169, 122, 253, 0.9); 147 | } 148 | 149 | .mh-featured-project .mh-featured-item .mh-featured-project-content .project-category { 150 | color: #a97afd; 151 | } 152 | 153 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot { 154 | border: 1px solid #a97afd; 155 | } 156 | 157 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot.active { 158 | background-color: #a97afd; 159 | } 160 | 161 | .mh-service .mh-service-item a { 162 | color: #a97afd; 163 | } 164 | 165 | .mh-pagination .page-link:hover { 166 | color: #a97afd; 167 | } 168 | 169 | .mh-author-info .social-icon li a:hover { 170 | color: #a97afd; 171 | } 172 | 173 | .mh-blog-category ul li a:hover { 174 | color: #a97afd; 175 | } 176 | 177 | .mh-blog-next-prev-post a { 178 | color: #a97afd; 179 | } 180 | 181 | .comment-deatils span { 182 | color: #a97afd; 183 | } 184 | 185 | .btn.btn-fill { 186 | background-color: #a97afd; 187 | } 188 | 189 | .mh-pricing .mh-pricing .fa { 190 | color: #a97afd; 191 | } 192 | /*# sourceMappingURL=blue.css.map */ -------------------------------------------------------------------------------- /assets/css/colors/green.css: -------------------------------------------------------------------------------- 1 | .new .navbar-toggler .icon, .new .navbar-toggler .icon::after, .new .navbar-toggler .icon::before { 2 | background-color: #4CAF50; 3 | } 4 | 5 | .white-vertion .page-item.active .page-link { 6 | color: #4CAF50; 7 | } 8 | 9 | .dark-vertion .page-item.active .page-link { 10 | color: #4CAF50; 11 | } 12 | 13 | .mh-header .navbar-nav li a:hover { 14 | color: #4CAF50; 15 | } 16 | 17 | .mh-home-2 .mh-header-info ul.mh-home-contact li:hover .fa { 18 | color: #4CAF50; 19 | } 20 | 21 | .mh-home .mh-header-info .mh-promo span { 22 | background-color: #4CAF50; 23 | } 24 | 25 | .mh-home .mh-header-info ul li:hover .fa { 26 | color: #4CAF50; 27 | } 28 | 29 | .mh-about-tag ul li span { 30 | border: 1px solid #4CAF50; 31 | } 32 | 33 | .mh-about-tag ul li span:hover { 34 | background-color: #4CAF50; 35 | } 36 | 37 | .mh-progress path:nth-child(2) { 38 | stroke: #4CAF50; 39 | } 40 | 41 | .candidatos .parcial .percentagem { 42 | background: #4CAF50; 43 | } 44 | 45 | .mh-experince .mh-education-deatils .mh-education-item .mh-eduyear { 46 | color: #4CAF50; 47 | } 48 | 49 | .mh-work .mh-experience-deatils .mh-work-item .mh-eduyear { 50 | color: #4CAF50; 51 | } 52 | 53 | .mh-experince .mh-education-deatils .mh-education-item h4 a { 54 | color: #4CAF50; 55 | } 56 | 57 | .mh-work .mh-experience-deatils .mh-work-item h4 a { 58 | color: #4CAF50; 59 | } 60 | 61 | .portfolio-nav ul li:hover { 62 | color: #4CAF50; 63 | } 64 | 65 | .portfolio-nav ul li.active { 66 | color: #4CAF50; 67 | } 68 | 69 | .mh-pricing .mh-pricing:hover .btn { 70 | background-color: #449d48; 71 | } 72 | 73 | .mh-pricing .mh-pricing .fa { 74 | color: #b5dfb7; 75 | } 76 | 77 | .mh-pricing .mh-pricing h5 { 78 | color: #4CAF50; 79 | } 80 | 81 | .mh-blog .mh-blog-item .blog-inner h2 a { 82 | color: #fff; 83 | } 84 | 85 | .mh-blog .mh-blog-item .blog-inner a { 86 | color: #4CAF50; 87 | } 88 | 89 | .mh-blog .mh-blog-item h2 { 90 | color: #4CAF50; 91 | } 92 | 93 | .mh-blog .mh-blog-item h2 a { 94 | color: #4CAF50; 95 | } 96 | 97 | .mh-blog .mh-blog-item h2 a:hover { 98 | color: #49a84d; 99 | } 100 | 101 | .mh-testimonial .mh-client-item img { 102 | border: 5px solid #4CAF50; 103 | } 104 | 105 | .mh-testimonial .owl-controls .owl-dots .owl-dot { 106 | border: 1px solid #4CAF50; 107 | } 108 | 109 | .mh-testimonial .owl-controls .owl-dots .owl-dot.active { 110 | background-color: #4CAF50; 111 | } 112 | 113 | .mh-footer-address .mh-address-footer-item .each-icon .fa { 114 | border-color: #4CAF50; 115 | } 116 | 117 | .old .navbar-collapse { 118 | background-color: #4CAF50; 119 | } 120 | 121 | .old .navbar-header .navbar-toggler .icon-bar { 122 | background-color: #4CAF50; 123 | } 124 | 125 | .old .navbar-collapse { 126 | background-color: #4CAF50; 127 | } 128 | 129 | .new .navbar-collapse { 130 | background-color: #4CAF50; 131 | } 132 | 133 | .new .navbar-header .navbar-toggler .icon-bar { 134 | background-color: #4CAF50; 135 | } 136 | 137 | .new .navbar-collapse { 138 | background-color: #4CAF50; 139 | } 140 | 141 | .portfolio-nav ul li.current span { 142 | border-bottom: 2px solid #4CAF50; 143 | } 144 | 145 | .mh-project-gallery .grid-item figure:hover figcaption { 146 | background: rgba(76, 175, 80, 0.9); 147 | } 148 | 149 | .mh-featured-project .mh-featured-item .mh-featured-project-content .project-category { 150 | color: #4CAF50; 151 | } 152 | 153 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot { 154 | border: 1px solid #4CAF50; 155 | } 156 | 157 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot.active { 158 | background-color: #4CAF50; 159 | } 160 | 161 | .mh-service .mh-service-item a { 162 | color: #4CAF50; 163 | } 164 | 165 | .mh-pagination .page-link:hover { 166 | color: #4CAF50; 167 | } 168 | 169 | .mh-author-info .social-icon li a:hover { 170 | color: #4CAF50; 171 | } 172 | 173 | .mh-blog-category ul li a:hover { 174 | color: #4CAF50; 175 | } 176 | 177 | .mh-blog-next-prev-post a { 178 | color: #4CAF50; 179 | } 180 | 181 | .comment-deatils span { 182 | color: #4CAF50; 183 | } 184 | 185 | .btn.btn-fill { 186 | background-color: #4CAF50; 187 | } 188 | 189 | .mh-pricing .mh-pricing .fa { 190 | color: #4CAF50; 191 | } 192 | /*# sourceMappingURL=green.css.map */ -------------------------------------------------------------------------------- /assets/css/colors/orange.css: -------------------------------------------------------------------------------- 1 | .new .navbar-toggler .icon, .new .navbar-toggler .icon::after, .new .navbar-toggler .icon::before { 2 | background-color: #ffa500; 3 | } 4 | 5 | .white-vertion .page-item.active .page-link { 6 | color: #ffa500; 7 | } 8 | 9 | .dark-vertion .page-item.active .page-link { 10 | color: #ffa500; 11 | } 12 | 13 | .mh-header .navbar-nav li a:hover { 14 | color: #ffa500; 15 | } 16 | 17 | .mh-home-2 .mh-header-info ul.mh-home-contact li:hover .fa { 18 | color: #ffa500; 19 | } 20 | 21 | .mh-home .mh-header-info .mh-promo span { 22 | background-color: #ffa500; 23 | } 24 | 25 | .mh-home .mh-header-info ul li:hover .fa { 26 | color: #ffa500; 27 | } 28 | 29 | .mh-about-tag ul li span { 30 | border: 1px solid #ffa500; 31 | } 32 | 33 | .mh-about-tag ul li span:hover { 34 | background-color: #ffa500; 35 | } 36 | 37 | .mh-progress path:nth-child(2) { 38 | stroke: #ffa500; 39 | } 40 | 41 | .candidatos .parcial .percentagem { 42 | background: #ffa500; 43 | } 44 | 45 | .mh-experince .mh-education-deatils .mh-education-item .mh-eduyear { 46 | color: #ffa500; 47 | } 48 | 49 | .mh-work .mh-experience-deatils .mh-work-item .mh-eduyear { 50 | color: #ffa500; 51 | } 52 | 53 | .portfolio-nav ul li:hover { 54 | color: #ffa500; 55 | } 56 | 57 | .portfolio-nav ul li.active { 58 | color: #ffa500; 59 | } 60 | 61 | .mh-experince .mh-education-deatils .mh-education-item h4 a { 62 | color: #ffa500; 63 | } 64 | 65 | .mh-work .mh-experience-deatils .mh-work-item h4 a { 66 | color: #ffa500; 67 | } 68 | 69 | .mh-pricing .mh-pricing:hover .btn { 70 | background-color: #e69500; 71 | } 72 | 73 | .mh-pricing .mh-pricing .fa { 74 | color: #ffdb99; 75 | } 76 | 77 | .mh-pricing .mh-pricing h5 { 78 | color: #ffa500; 79 | } 80 | 81 | .mh-blog .mh-blog-item .blog-inner h2 a { 82 | color: #fff; 83 | } 84 | 85 | .mh-blog .mh-blog-item .blog-inner a { 86 | color: #ffa500; 87 | } 88 | 89 | .mh-blog .mh-blog-item h2 { 90 | color: #ffa500; 91 | } 92 | 93 | .mh-blog .mh-blog-item h2 a { 94 | color: #ffa500; 95 | } 96 | 97 | .mh-blog .mh-blog-item h2 a:hover { 98 | color: #f59e00; 99 | } 100 | 101 | .mh-testimonial .mh-client-item img { 102 | border: 5px solid #ffa500; 103 | } 104 | 105 | .mh-testimonial .owl-controls .owl-dots .owl-dot { 106 | border: 1px solid #ffa500; 107 | } 108 | 109 | .mh-testimonial .owl-controls .owl-dots .owl-dot.active { 110 | background-color: #ffa500; 111 | } 112 | 113 | .mh-footer-address .mh-address-footer-item .each-icon .fa { 114 | border-color: #ffa500; 115 | } 116 | 117 | .old .navbar-collapse { 118 | background-color: #ffa500; 119 | } 120 | 121 | .old .navbar-header .navbar-toggler .icon-bar { 122 | background-color: #ffa500; 123 | } 124 | 125 | .old .navbar-collapse { 126 | background-color: #ffa500; 127 | } 128 | 129 | .new .navbar-collapse { 130 | background-color: #ffa500; 131 | } 132 | 133 | .new .navbar-header .navbar-toggler .icon-bar { 134 | background-color: #ffa500; 135 | } 136 | 137 | .new .navbar-collapse { 138 | background-color: #ffa500; 139 | } 140 | 141 | .portfolio-nav ul li.current span { 142 | border-bottom: 2px solid #ffa500; 143 | } 144 | 145 | .mh-project-gallery .grid-item figure:hover figcaption { 146 | background: rgba(255, 165, 0, 0.9); 147 | } 148 | 149 | .mh-featured-project .mh-featured-item .mh-featured-project-content .project-category { 150 | color: #ffa500; 151 | } 152 | 153 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot { 154 | border: 1px solid #ffa500; 155 | } 156 | 157 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot.active { 158 | background-color: #ffa500; 159 | } 160 | 161 | .mh-service .mh-service-item a { 162 | color: #ffa500; 163 | } 164 | 165 | .mh-pagination .page-link:hover { 166 | color: #ffa500; 167 | } 168 | 169 | .mh-author-info .social-icon li a:hover { 170 | color: #ffa500; 171 | } 172 | 173 | .mh-blog-category ul li a:hover { 174 | color: #ffa500; 175 | } 176 | 177 | .mh-blog-next-prev-post a { 178 | color: #ffa500; 179 | } 180 | 181 | .comment-deatils span { 182 | color: #ffa500; 183 | } 184 | 185 | .btn.btn-fill { 186 | background-color: #ffa500; 187 | } 188 | 189 | .mh-pricing .mh-pricing .fa { 190 | color: #ffa500; 191 | } 192 | /*# sourceMappingURL=orange.css.map */ -------------------------------------------------------------------------------- /assets/css/colors/purple.css: -------------------------------------------------------------------------------- 1 | .new .navbar-toggler .icon, .new .navbar-toggler .icon::after, .new .navbar-toggler .icon::before { 2 | background-color: #E91E63; 3 | } 4 | 5 | .mh-experince .mh-education-deatils .mh-education-item h4 a { 6 | color: #E91E63; 7 | } 8 | 9 | .mh-work .mh-experience-deatils .mh-work-item h4 a { 10 | color: #E91E63; 11 | } 12 | 13 | .white-vertion .page-item.active .page-link { 14 | color: #E91E63; 15 | } 16 | 17 | .dark-vertion .page-item.active .page-link { 18 | color: #E91E63; 19 | } 20 | 21 | .mh-header .navbar-nav li a:hover { 22 | color: #E91E63; 23 | } 24 | 25 | .mh-home-2 .mh-header-info ul.mh-home-contact li:hover .fa { 26 | color: #E91E63; 27 | } 28 | 29 | .mh-home .mh-header-info .mh-promo span { 30 | background-color: #E91E63; 31 | } 32 | 33 | .mh-home .mh-header-info ul li:hover .fa { 34 | color: #E91E63; 35 | } 36 | 37 | .mh-about-tag ul li span { 38 | border: 1px solid #E91E63; 39 | } 40 | 41 | .mh-about-tag ul li span:hover { 42 | background-color: #E91E63; 43 | } 44 | 45 | .mh-progress path:nth-child(2) { 46 | stroke: #E91E63; 47 | } 48 | 49 | .candidatos .parcial .percentagem { 50 | background: #E91E63; 51 | } 52 | 53 | .mh-experince .mh-education-deatils .mh-education-item .mh-eduyear { 54 | color: #E91E63; 55 | } 56 | 57 | .mh-work .mh-experience-deatils .mh-work-item .mh-eduyear { 58 | color: #E91E63; 59 | } 60 | 61 | .portfolio-nav ul li:hover { 62 | color: #E91E63; 63 | } 64 | 65 | .portfolio-nav ul li.active { 66 | color: #E91E63; 67 | } 68 | 69 | .mh-pricing .mh-pricing:hover .btn { 70 | background-color: #d81558; 71 | } 72 | 73 | .mh-pricing .mh-pricing .fa { 74 | color: #f7a9c4; 75 | } 76 | 77 | .mh-pricing .mh-pricing h5 { 78 | color: #E91E63; 79 | } 80 | 81 | .mh-blog .mh-blog-item .blog-inner h2 a { 82 | color: #fff; 83 | } 84 | 85 | .mh-blog .mh-blog-item .blog-inner a { 86 | color: #E91E63; 87 | } 88 | 89 | .mh-blog .mh-blog-item h2 { 90 | color: #E91E63; 91 | } 92 | 93 | .mh-blog .mh-blog-item h2 a { 94 | color: #E91E63; 95 | } 96 | 97 | .mh-blog .mh-blog-item h2 a:hover { 98 | color: #e6175d; 99 | } 100 | 101 | .mh-testimonial .mh-client-item img { 102 | border: 5px solid #E91E63; 103 | } 104 | 105 | .mh-testimonial .owl-controls .owl-dots .owl-dot { 106 | border: 1px solid #E91E63; 107 | } 108 | 109 | .mh-testimonial .owl-controls .owl-dots .owl-dot.active { 110 | background-color: #E91E63; 111 | } 112 | 113 | .mh-footer-address .mh-address-footer-item .each-icon .fa { 114 | border-color: #E91E63; 115 | } 116 | 117 | .old .navbar-collapse { 118 | background-color: #E91E63; 119 | } 120 | 121 | .old .navbar-header .navbar-toggler .icon-bar { 122 | background-color: #E91E63; 123 | } 124 | 125 | .old .navbar-collapse { 126 | background-color: #E91E63; 127 | } 128 | 129 | .new .navbar-collapse { 130 | background-color: #E91E63; 131 | } 132 | 133 | .new .navbar-header .navbar-toggler .icon-bar { 134 | background-color: #E91E63; 135 | } 136 | 137 | .new .navbar-collapse { 138 | background-color: #E91E63; 139 | } 140 | 141 | .portfolio-nav ul li.current span { 142 | border-bottom: 2px solid #E91E63; 143 | } 144 | 145 | .mh-project-gallery .grid-item figure:hover figcaption { 146 | background: rgba(233, 30, 99, 0.9); 147 | } 148 | 149 | .mh-featured-project .mh-featured-item .mh-featured-project-content .project-category { 150 | color: #E91E63; 151 | } 152 | 153 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot { 154 | border: 1px solid #E91E63; 155 | } 156 | 157 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot.active { 158 | background-color: #E91E63; 159 | } 160 | 161 | .mh-service .mh-service-item a { 162 | color: #E91E63; 163 | } 164 | 165 | .mh-pagination .page-link:hover { 166 | color: #E91E63; 167 | } 168 | 169 | .mh-author-info .social-icon li a:hover { 170 | color: #E91E63; 171 | } 172 | 173 | .mh-blog-category ul li a:hover { 174 | color: #E91E63; 175 | } 176 | 177 | .mh-blog-next-prev-post a { 178 | color: #E91E63; 179 | } 180 | 181 | .comment-deatils span { 182 | color: #E91E63; 183 | } 184 | 185 | .btn.btn-fill { 186 | background-color: #E91E63; 187 | } 188 | 189 | .mh-pricing .mh-pricing .fa { 190 | color: #E91E63; 191 | } 192 | /*# sourceMappingURL=purple.css.map */ -------------------------------------------------------------------------------- /assets/css/colors/blue-munsell.css: -------------------------------------------------------------------------------- 1 | .new .navbar-toggler .icon, .new .navbar-toggler .icon::after, .new .navbar-toggler .icon::before { 2 | background-color: #2196F3; 3 | } 4 | 5 | .white-vertion .page-item.active .page-link { 6 | color: #2196F3; 7 | } 8 | 9 | .dark-vertion .page-item.active .page-link { 10 | color: #2196F3; 11 | } 12 | 13 | .mh-header .navbar-nav li a:hover { 14 | color: #2196F3; 15 | } 16 | 17 | .mh-home-2 .mh-header-info ul.mh-home-contact li:hover .fa { 18 | color: #2196F3; 19 | } 20 | 21 | .mh-home .mh-header-info .mh-promo span { 22 | background-color: #2196F3; 23 | } 24 | 25 | .mh-home .mh-header-info ul li:hover .fa { 26 | color: #2196F3; 27 | } 28 | 29 | .mh-about-tag ul li span { 30 | border: 1px solid #2196F3; 31 | } 32 | 33 | .mh-about-tag ul li span:hover { 34 | background-color: #2196F3; 35 | } 36 | 37 | .mh-progress path:nth-child(2) { 38 | stroke: #2196F3; 39 | } 40 | 41 | .candidatos .parcial .percentagem { 42 | background: #2196F3; 43 | } 44 | 45 | .mh-experince .mh-education-deatils .mh-education-item .mh-eduyear { 46 | color: #2196F3; 47 | } 48 | 49 | .mh-work .mh-experience-deatils .mh-work-item .mh-eduyear { 50 | color: #2196F3; 51 | } 52 | 53 | .mh-experince .mh-education-deatils .mh-education-item h4 a { 54 | color: #2196F3; 55 | } 56 | 57 | .mh-work .mh-experience-deatils .mh-work-item h4 a { 58 | color: #2196F3; 59 | } 60 | 61 | .portfolio-nav ul li:hover { 62 | color: #2196F3; 63 | } 64 | 65 | .portfolio-nav ul li.active { 66 | color: #2196F3; 67 | } 68 | 69 | .mh-pricing .mh-pricing:hover .btn { 70 | background-color: #0d8aee; 71 | } 72 | 73 | .mh-pricing .mh-pricing .fa { 74 | color: #b2dbfb; 75 | } 76 | 77 | .mh-pricing .mh-pricing h5 { 78 | color: #2196F3; 79 | } 80 | 81 | .mh-blog .mh-blog-item .blog-inner h2 a { 82 | color: #fff; 83 | } 84 | 85 | .mh-blog .mh-blog-item .blog-inner a { 86 | color: #2196F3; 87 | } 88 | 89 | .mh-blog .mh-blog-item h2 { 90 | color: #2196F3; 91 | } 92 | 93 | .mh-blog .mh-blog-item h2 a { 94 | color: #2196F3; 95 | } 96 | 97 | .mh-blog .mh-blog-item h2 a:hover { 98 | color: #1791f2; 99 | } 100 | 101 | .mh-testimonial .mh-client-item img { 102 | border: 5px solid #2196F3; 103 | } 104 | 105 | .mh-testimonial .owl-controls .owl-dots .owl-dot { 106 | border: 1px solid #2196F3; 107 | } 108 | 109 | .mh-testimonial .owl-controls .owl-dots .owl-dot.active { 110 | background-color: #2196F3; 111 | } 112 | 113 | .mh-footer-address .mh-address-footer-item .each-icon .fa { 114 | border-color: #2196F3; 115 | } 116 | 117 | .old .navbar-collapse { 118 | background-color: #2196F3; 119 | } 120 | 121 | .old .navbar-header .navbar-toggler .icon-bar { 122 | background-color: #2196F3; 123 | } 124 | 125 | .old .navbar-collapse { 126 | background-color: #2196F3; 127 | } 128 | 129 | .new .navbar-collapse { 130 | background-color: #2196F3; 131 | } 132 | 133 | .new .navbar-header .navbar-toggler .icon-bar { 134 | background-color: #2196F3; 135 | } 136 | 137 | .new .navbar-collapse { 138 | background-color: #2196F3; 139 | } 140 | 141 | .portfolio-nav ul li.current span { 142 | border-bottom: 2px solid #2196F3; 143 | } 144 | 145 | .mh-project-gallery .grid-item figure:hover figcaption { 146 | background: rgba(33, 150, 243, 0.9); 147 | } 148 | 149 | .mh-featured-project .mh-featured-item .mh-featured-project-content .project-category { 150 | color: #2196F3; 151 | } 152 | 153 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot { 154 | border: 1px solid #2196F3; 155 | } 156 | 157 | .mh-single-project-slide .owl-controls .owl-dots .owl-dot.active { 158 | background-color: #2196F3; 159 | } 160 | 161 | .mh-service .mh-service-item a { 162 | color: #2196F3; 163 | } 164 | 165 | .mh-pagination .page-link:hover { 166 | color: #2196F3; 167 | } 168 | 169 | .mh-author-info .social-icon li a:hover { 170 | color: #2196F3; 171 | } 172 | 173 | .mh-blog-category ul li a:hover { 174 | color: #2196F3; 175 | } 176 | 177 | .mh-blog-next-prev-post a { 178 | color: #2196F3; 179 | } 180 | 181 | .comment-deatils span { 182 | color: #2196F3; 183 | } 184 | 185 | .btn.btn-fill { 186 | background-color: #2196F3; 187 | } 188 | 189 | .mh-pricing .mh-pricing .fa { 190 | color: #2196F3; 191 | } 192 | /*# sourceMappingURL=blue-munsell.css.map */ -------------------------------------------------------------------------------- /assets/plugins/css/owl.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Owl Carousel - Animate Plugin 3 | */ 4 | .owl-carousel .animated { 5 | -webkit-animation-duration: 1000ms; 6 | animation-duration: 1000ms; 7 | -webkit-animation-fill-mode: both; 8 | animation-fill-mode: both; 9 | } 10 | .owl-carousel .owl-animated-in { 11 | z-index: 0; 12 | } 13 | .owl-carousel .owl-animated-out { 14 | z-index: 1; 15 | } 16 | .owl-carousel .fadeOut { 17 | -webkit-animation-name: fadeOut; 18 | animation-name: fadeOut; 19 | } 20 | 21 | @-webkit-keyframes fadeOut { 22 | 0% { 23 | opacity: 1; 24 | } 25 | 26 | 100% { 27 | opacity: 0; 28 | } 29 | } 30 | @keyframes fadeOut { 31 | 0% { 32 | opacity: 1; 33 | } 34 | 35 | 100% { 36 | opacity: 0; 37 | } 38 | } 39 | 40 | /* 41 | * Owl Carousel - Auto Height Plugin 42 | */ 43 | .owl-height { 44 | -webkit-transition: height 500ms ease-in-out; 45 | -moz-transition: height 500ms ease-in-out; 46 | -ms-transition: height 500ms ease-in-out; 47 | -o-transition: height 500ms ease-in-out; 48 | transition: height 500ms ease-in-out; 49 | } 50 | 51 | /* 52 | * Core Owl Carousel CSS File 53 | */ 54 | .owl-carousel { 55 | display: none; 56 | width: 100%; 57 | -webkit-tap-highlight-color: transparent; 58 | /* position relative and z-index fix webkit rendering fonts issue */ 59 | position: relative; 60 | z-index: 1; 61 | } 62 | .owl-carousel .owl-stage { 63 | position: relative; 64 | -ms-touch-action: pan-Y; 65 | } 66 | .owl-carousel .owl-stage:after { 67 | content: "."; 68 | display: block; 69 | clear: both; 70 | visibility: hidden; 71 | line-height: 0; 72 | height: 0; 73 | } 74 | .owl-carousel .owl-stage-outer { 75 | position: relative; 76 | overflow: hidden; 77 | /* fix for flashing background */ 78 | -webkit-transform: translate3d(0px, 0px, 0px); 79 | } 80 | .owl-carousel .owl-controls .owl-nav .owl-prev, 81 | .owl-carousel .owl-controls .owl-nav .owl-next, 82 | .owl-carousel .owl-controls .owl-dot { 83 | cursor: pointer; 84 | cursor: hand; 85 | -webkit-user-select: none; 86 | -khtml-user-select: none; 87 | -moz-user-select: none; 88 | -ms-user-select: none; 89 | user-select: none; 90 | } 91 | .owl-carousel.owl-loaded { 92 | display: block; 93 | } 94 | .owl-carousel.owl-loading { 95 | opacity: 0; 96 | display: block; 97 | } 98 | .owl-carousel.owl-hidden { 99 | opacity: 0; 100 | } 101 | .owl-carousel .owl-refresh .owl-item { 102 | display: none; 103 | } 104 | .owl-carousel .owl-item { 105 | position: relative; 106 | min-height: 1px; 107 | float: left; 108 | -webkit-backface-visibility: hidden; 109 | -webkit-tap-highlight-color: transparent; 110 | -webkit-touch-callout: none; 111 | -webkit-user-select: none; 112 | -moz-user-select: none; 113 | -ms-user-select: none; 114 | user-select: none; 115 | } 116 | .owl-carousel .owl-item img { 117 | display: block; 118 | width: 100%; 119 | -webkit-transform-style: preserve-3d; 120 | } 121 | .owl-carousel.owl-text-select-on .owl-item { 122 | -webkit-user-select: auto; 123 | -moz-user-select: auto; 124 | -ms-user-select: auto; 125 | user-select: auto; 126 | } 127 | .owl-carousel .owl-grab { 128 | cursor: move; 129 | cursor: -webkit-grab; 130 | cursor: -o-grab; 131 | cursor: -ms-grab; 132 | cursor: grab; 133 | } 134 | .owl-carousel.owl-rtl { 135 | direction: rtl; 136 | } 137 | .owl-carousel.owl-rtl .owl-item { 138 | float: right; 139 | } 140 | 141 | /* No Js */ 142 | .no-js .owl-carousel { 143 | display: block; 144 | } 145 | 146 | /* 147 | * Owl Carousel - Lazy Load Plugin 148 | */ 149 | .owl-carousel .owl-item .owl-lazy { 150 | opacity: 0; 151 | -webkit-transition: opacity 400ms ease; 152 | -moz-transition: opacity 400ms ease; 153 | -ms-transition: opacity 400ms ease; 154 | -o-transition: opacity 400ms ease; 155 | transition: opacity 400ms ease; 156 | } 157 | .owl-carousel .owl-item img { 158 | transform-style: preserve-3d; 159 | } 160 | 161 | /* 162 | * Owl Carousel - Video Plugin 163 | */ 164 | .owl-carousel .owl-video-wrapper { 165 | position: relative; 166 | height: 100%; 167 | background: #000; 168 | } 169 | .owl-carousel .owl-video-play-icon { 170 | position: absolute; 171 | height: 80px; 172 | width: 80px; 173 | left: 50%; 174 | top: 50%; 175 | margin-left: -40px; 176 | margin-top: -40px; 177 | background: url("owl.video.play.png") no-repeat; 178 | cursor: pointer; 179 | z-index: 1; 180 | -webkit-backface-visibility: hidden; 181 | -webkit-transition: scale 100ms ease; 182 | -moz-transition: scale 100ms ease; 183 | -ms-transition: scale 100ms ease; 184 | -o-transition: scale 100ms ease; 185 | transition: scale 100ms ease; 186 | } 187 | .owl-carousel .owl-video-play-icon:hover { 188 | -webkit-transition: scale(1.3, 1.3); 189 | -moz-transition: scale(1.3, 1.3); 190 | -ms-transition: scale(1.3, 1.3); 191 | -o-transition: scale(1.3, 1.3); 192 | transition: scale(1.3, 1.3); 193 | } 194 | .owl-carousel .owl-video-playing .owl-video-tn, 195 | .owl-carousel .owl-video-playing .owl-video-play-icon { 196 | display: none; 197 | } 198 | .owl-carousel .owl-video-tn { 199 | opacity: 0; 200 | height: 100%; 201 | background-position: center center; 202 | background-repeat: no-repeat; 203 | -webkit-background-size: contain; 204 | -moz-background-size: contain; 205 | -o-background-size: contain; 206 | background-size: contain; 207 | -webkit-transition: opacity 400ms ease; 208 | -moz-transition: opacity 400ms ease; 209 | -ms-transition: opacity 400ms ease; 210 | -o-transition: opacity 400ms ease; 211 | transition: opacity 400ms ease; 212 | } 213 | .owl-carousel .owl-video-frame { 214 | position: relative; 215 | z-index: 1; 216 | } -------------------------------------------------------------------------------- /assets/plugins/js/validator.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Validator v0.9.0 for Bootstrap 3, by @1000hz 3 | * Copyright 2015 Cina Saffary 4 | * Licensed under http://opensource.org/licenses/MIT 5 | * 6 | * https://github.com/1000hz/bootstrap-validator 7 | */ 8 | 9 | +function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),f=d.data("bs.validator");(f||"destroy"!=b)&&(f||d.data("bs.validator",f=new c(this,e)),"string"==typeof b&&f[b]())})}var c=function(b,d){this.$element=a(b),this.options=d,d.errors=a.extend({},c.DEFAULTS.errors,d.errors);for(var e in d.custom)if(!d.errors[e])throw new Error("Missing default error message for custom validator: "+e);a.extend(c.VALIDATORS,d.custom),this.$element.attr("novalidate",!0),this.toggleSubmit(),this.$element.on("input.bs.validator change.bs.validator focusout.bs.validator",a.proxy(this.validateInput,this)),this.$element.on("submit.bs.validator",a.proxy(this.onSubmit,this)),this.$element.find("[data-match]").each(function(){var b=a(this),c=b.data("match");a(c).on("input.bs.validator",function(){b.val()&&b.trigger("input.bs.validator")})})};c.INPUT_SELECTOR=':input:not([type="submit"], button):enabled:visible',c.DEFAULTS={delay:500,html:!1,disable:!0,custom:{},errors:{match:"Does not match",minlength:"Not long enough"},feedback:{success:"glyphicon-ok",error:"glyphicon-remove"}},c.VALIDATORS={"native":function(a){var b=a[0];return b.checkValidity?b.checkValidity():!0},match:function(b){var c=b.data("match");return!b.val()||b.val()===a(c).val()},minlength:function(a){var b=a.data("minlength");return!a.val()||a.val().length>=b}},c.prototype.validateInput=function(b){var c=a(b.target),d=c.data("bs.validator.errors");if(c.is('[type="radio"]')&&(c=this.$element.find('input[name="'+c.attr("name")+'"]')),this.$element.trigger(b=a.Event("validate.bs.validator",{relatedTarget:c[0]})),!b.isDefaultPrevented()){var e=this;this.runValidators(c).done(function(f){c.data("bs.validator.errors",f),f.length?e.showErrors(c):e.clearErrors(c),d&&f.toString()===d.toString()||(b=f.length?a.Event("invalid.bs.validator",{relatedTarget:c[0],detail:f}):a.Event("valid.bs.validator",{relatedTarget:c[0],detail:d}),e.$element.trigger(b)),e.toggleSubmit(),e.$element.trigger(a.Event("validated.bs.validator",{relatedTarget:c[0]}))})}},c.prototype.runValidators=function(b){function d(a){return b.data(a+"-error")||b.data("error")||"native"==a&&b[0].validationMessage||g.errors[a]}var e=[],f=a.Deferred(),g=this.options;return b.data("bs.validator.deferred")&&b.data("bs.validator.deferred").reject(),b.data("bs.validator.deferred",f),a.each(c.VALIDATORS,a.proxy(function(a,c){if((b.data(a)||"native"==a)&&!c.call(this,b)){var f=d(a);!~e.indexOf(f)&&e.push(f)}},this)),!e.length&&b.val()&&b.data("remote")?this.defer(b,function(){var c={};c[b.attr("name")]=b.val(),a.get(b.data("remote"),c).fail(function(a,b,c){e.push(d("remote")||c)}).always(function(){f.resolve(e)})}):f.resolve(e),f.promise()},c.prototype.validate=function(){var a=this.options.delay;return this.options.delay=0,this.$element.find(c.INPUT_SELECTOR).trigger("input.bs.validator"),this.options.delay=a,this},c.prototype.showErrors=function(b){var c=this.options.html?"html":"text";this.defer(b,function(){var d=b.closest(".form-group"),e=d.find(".help-block.with-errors"),f=d.find(".form-control-feedback"),g=b.data("bs.validator.errors");g.length&&(g=a("