├── .editorconfig ├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── gulpfile.js ├── netlify.toml ├── package.json ├── screenshots ├── about.png ├── contact.png ├── index1.png ├── index2.png ├── index3.png ├── index4.png ├── pricing.png ├── project-details.png ├── projects.png └── service.png ├── source ├── about.html ├── contact.html ├── images │ ├── banner-img-5.png │ ├── banner │ │ ├── about.jpg │ │ ├── banner-2.jpg │ │ ├── banner.jpg │ │ ├── img2.jpg │ │ ├── p-1.jpg │ │ ├── p-4.jpg │ │ ├── p-6.jpg │ │ └── service.jpg │ ├── bg │ │ ├── 10.jpg │ │ ├── 6.jpg │ │ ├── banner_bg.jpg │ │ └── bg2.png │ ├── blog-lg.jpg │ ├── blog │ │ ├── blog-1.jpg │ │ ├── blog-2.jpg │ │ └── blog-3.jpg │ ├── client │ │ ├── img-1.jpg │ │ ├── img-2.jpg │ │ ├── img-3.jpg │ │ ├── test-1.jpg │ │ ├── test-2.jpg │ │ ├── test-3.jpg │ │ ├── test-4.jpg │ │ ├── test-5.jpg │ │ └── test-6.jpg │ ├── favicon.png │ ├── ico │ │ ├── apple-icon-180x180.png │ │ ├── browserconfig.xml │ │ ├── favicon.ico │ │ └── manifest.json │ ├── icon │ │ ├── if_envelope-stats_1291753.svg │ │ ├── if_glass-stats_1291748.svg │ │ ├── if_price-tag_1291777.svg │ │ └── if_target_1291767.svg │ ├── process │ │ ├── process-1.jpg │ │ ├── process-2.jpg │ │ └── process-3.jpg │ ├── projects │ │ ├── 2-min.jpg │ │ ├── p-1.jpg │ │ ├── p-2.jpg │ │ ├── p-3.jpg │ │ ├── p-4.jpg │ │ ├── p-5.jpg │ │ └── p-6.jpg │ ├── service │ │ ├── 47.jpg │ │ ├── 55.jpg │ │ ├── service-1.jpg │ │ ├── service-2.jpg │ │ └── service-3.jpg │ └── work │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ └── 15.jpg ├── index-2.html ├── index-3.html ├── index-4.html ├── index.html ├── js │ └── script.js ├── partials │ ├── blocks │ │ ├── about-2.htm │ │ ├── about.htm │ │ ├── blog-posts.htm │ │ ├── blog.htm │ │ ├── call-to-action.htm │ │ ├── clinets-logo.htm │ │ ├── contact.htm │ │ ├── feature.htm │ │ ├── footer.htm │ │ ├── instagram-feed.htm │ │ ├── intro.htm │ │ ├── nav-2.htm │ │ ├── nav-3.htm │ │ ├── nav-4.htm │ │ ├── navigation.htm │ │ ├── page-contact.htm │ │ ├── page-header.htm │ │ ├── page-pricing.html │ │ ├── page-project.htm │ │ ├── page-service.htm │ │ ├── page-title.htm │ │ ├── portfolio-2.htm │ │ ├── portfolio.htm │ │ ├── post-sidebar.htm │ │ ├── pricing.htm │ │ ├── process-2.htm │ │ ├── process.htm │ │ ├── rightbar.htm │ │ ├── service-2.htm │ │ ├── service.htm │ │ ├── slider-2.htm │ │ ├── slider-3.htm │ │ ├── slider-4.htm │ │ ├── slider.htm │ │ └── testimonial.htm │ ├── footer.htm │ └── header.htm ├── plugins │ ├── animate-css │ │ └── animate.css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.js │ ├── fontawesome │ │ ├── css │ │ │ └── all.css │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ ├── fonts │ │ ├── Pe-icon-7-stroke.css │ │ ├── Pe-icon-7-stroke.eot │ │ ├── Pe-icon-7-stroke.svg │ │ ├── Pe-icon-7-stroke.ttf │ │ └── Pe-icon-7-stroke.woff │ ├── google-map │ │ ├── gmap.js │ │ └── images │ │ │ └── marker.png │ ├── jquery │ │ ├── jquery.easing.1.3.js │ │ └── jquery.min.js │ ├── slick-carousel │ │ └── slick │ │ │ ├── ajax-loader.gif │ │ │ ├── config.rb │ │ │ ├── fonts │ │ │ ├── slick.eot │ │ │ ├── slick.svg │ │ │ ├── slick.ttf │ │ │ └── slick.woff │ │ │ ├── slick-theme.css │ │ │ ├── slick-theme.less │ │ │ ├── slick-theme.scss │ │ │ ├── slick.css │ │ │ ├── slick.js │ │ │ ├── slick.less │ │ │ ├── slick.min.js │ │ │ └── slick.scss │ └── themify │ │ ├── css │ │ └── themify-icons.css │ │ └── fonts │ │ ├── themify.eot │ │ ├── themify.svg │ │ ├── themify.ttf │ │ └── themify.woff ├── pricing.html ├── project.html ├── scss │ ├── _color.scss │ ├── _common.scss │ ├── _main.scss │ ├── _media-query.scss │ ├── _mixins.scss │ ├── _responsive.scss │ ├── _typography.scss │ ├── _variables.scss │ ├── style.scss │ └── templates │ │ ├── _about.scss │ │ ├── _backgrounds.scss │ │ ├── _blog.scss │ │ ├── _contact.scss │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _navigation.scss │ │ ├── _page-banner.scss │ │ ├── _portfolio.scss │ │ ├── _pricing.scss │ │ ├── _process.scss │ │ ├── _service.scss │ │ ├── _slider.scss │ │ └── _testimonial.scss ├── service.html └── single-project.html └── theme ├── about.html ├── contact.html ├── css ├── style.css └── style.css.map ├── images ├── banner-img-5.png ├── banner │ ├── about.jpg │ ├── banner-2.jpg │ ├── banner.jpg │ ├── img2.jpg │ ├── p-1.jpg │ ├── p-4.jpg │ ├── p-6.jpg │ └── service.jpg ├── bg │ ├── 10.jpg │ ├── 6.jpg │ ├── banner_bg.jpg │ └── bg2.png ├── blog-lg.jpg ├── blog │ ├── blog-1.jpg │ ├── blog-2.jpg │ └── blog-3.jpg ├── client │ ├── img-1.jpg │ ├── img-2.jpg │ ├── img-3.jpg │ ├── test-1.jpg │ ├── test-2.jpg │ ├── test-3.jpg │ ├── test-4.jpg │ ├── test-5.jpg │ └── test-6.jpg ├── favicon.png ├── ico │ └── apple-icon-180x180.png ├── icon │ ├── if_envelope-stats_1291753.svg │ ├── if_glass-stats_1291748.svg │ ├── if_price-tag_1291777.svg │ └── if_target_1291767.svg ├── process │ ├── process-1.jpg │ ├── process-2.jpg │ └── process-3.jpg ├── projects │ ├── 2-min.jpg │ ├── p-1.jpg │ ├── p-2.jpg │ ├── p-3.jpg │ ├── p-4.jpg │ ├── p-5.jpg │ └── p-6.jpg ├── service │ ├── 47.jpg │ ├── 55.jpg │ ├── service-1.jpg │ ├── service-2.jpg │ └── service-3.jpg └── work │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ └── 15.jpg ├── index-2.html ├── index-3.html ├── index-4.html ├── index.html ├── js └── script.js ├── plugins ├── animate-css │ └── animate.css ├── bootstrap │ ├── bootstrap.min.css │ └── bootstrap.min.js ├── fontawesome │ ├── css │ │ └── all.css │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── fonts │ ├── Pe-icon-7-stroke.css │ ├── Pe-icon-7-stroke.eot │ ├── Pe-icon-7-stroke.svg │ ├── Pe-icon-7-stroke.ttf │ └── Pe-icon-7-stroke.woff ├── google-map │ ├── gmap.js │ └── images │ │ └── marker.png ├── jquery │ ├── jquery.easing.1.3.js │ └── jquery.min.js ├── slick-carousel │ └── slick │ │ ├── ajax-loader.gif │ │ ├── config.rb │ │ ├── fonts │ │ ├── slick.eot │ │ ├── slick.svg │ │ ├── slick.ttf │ │ └── slick.woff │ │ ├── slick-theme.css │ │ ├── slick-theme.less │ │ ├── slick-theme.scss │ │ ├── slick.css │ │ ├── slick.js │ │ ├── slick.less │ │ ├── slick.min.js │ │ └── slick.scss └── themify │ ├── css │ └── themify-icons.css │ └── fonts │ ├── themify.eot │ ├── themify.svg │ ├── themify.ttf │ └── themify.woff ├── pricing.html ├── project.html ├── service.html └── single-project.html /.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 -------------------------------------------------------------------------------- /.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 -------------------------------------------------------------------------------- /.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": "single", 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 | } -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | const sass = require("gulp-sass")(require("sass")); 4 | const gulp = require("gulp"); 5 | const sourcemaps = require("gulp-sourcemaps"); 6 | const fileinclude = require("gulp-file-include"); 7 | const autoprefixer = require("gulp-autoprefixer"); 8 | const bs = require("browser-sync").create(); 9 | const rimraf = require("rimraf"); 10 | const comments = require("gulp-header-comment"); 11 | 12 | var path = { 13 | src: { 14 | html: "source/*.html", 15 | others: "source/*.+(php|ico|png)", 16 | htminc: "source/partials/**/*.htm", 17 | incdir: "source/partials/", 18 | plugins: "source/plugins/**/*.*", 19 | js: "source/js/*.js", 20 | scss: "source/scss/**/*.scss", 21 | images: "source/images/**/*.+(png|jpg|gif|svg)", 22 | }, 23 | build: { 24 | dirBuild: "theme/", 25 | dirDev: "theme/", 26 | }, 27 | }; 28 | 29 | // HTML 30 | gulp.task("html:build", function () { 31 | return gulp 32 | .src(path.src.html) 33 | .pipe( 34 | fileinclude({ 35 | basepath: path.src.incdir, 36 | }) 37 | ) 38 | .pipe( 39 | comments(` 40 | WEBSITE: https://themefisher.com 41 | TWITTER: https://twitter.com/themefisher 42 | FACEBOOK: https://www.facebook.com/themefisher 43 | GITHUB: https://github.com/themefisher/ 44 | `) 45 | ) 46 | .pipe(gulp.dest(path.build.dirDev)) 47 | .pipe( 48 | bs.reload({ 49 | stream: true, 50 | }) 51 | ); 52 | }); 53 | 54 | // SCSS 55 | gulp.task("scss:build", function () { 56 | return gulp 57 | .src(path.src.scss) 58 | .pipe(sourcemaps.init()) 59 | .pipe( 60 | sass({ 61 | outputStyle: "expanded", 62 | }).on("error", sass.logError) 63 | ) 64 | .pipe(autoprefixer()) 65 | .pipe(sourcemaps.write("/")) 66 | .pipe( 67 | comments(` 68 | WEBSITE: https://themefisher.com 69 | TWITTER: https://twitter.com/themefisher 70 | FACEBOOK: https://www.facebook.com/themefisher 71 | GITHUB: https://github.com/themefisher/ 72 | `) 73 | ) 74 | .pipe(gulp.dest(path.build.dirDev + "css/")) 75 | .pipe( 76 | bs.reload({ 77 | stream: true, 78 | }) 79 | ); 80 | }); 81 | 82 | // Javascript 83 | gulp.task("js:build", function () { 84 | return gulp 85 | .src(path.src.js) 86 | .pipe( 87 | comments(` 88 | WEBSITE: https://themefisher.com 89 | TWITTER: https://twitter.com/themefisher 90 | FACEBOOK: https://www.facebook.com/themefisher 91 | GITHUB: https://github.com/themefisher/ 92 | `) 93 | ) 94 | .pipe(gulp.dest(path.build.dirDev + "js/")) 95 | .pipe( 96 | bs.reload({ 97 | stream: true, 98 | }) 99 | ); 100 | }); 101 | 102 | // Images 103 | gulp.task("images:build", function () { 104 | return gulp 105 | .src(path.src.images) 106 | .pipe(gulp.dest(path.build.dirDev + "images/")) 107 | .pipe( 108 | bs.reload({ 109 | stream: true, 110 | }) 111 | ); 112 | }); 113 | 114 | // Plugins 115 | gulp.task("plugins:build", function () { 116 | return gulp 117 | .src(path.src.plugins) 118 | .pipe(gulp.dest(path.build.dirDev + "plugins/")) 119 | .pipe( 120 | bs.reload({ 121 | stream: true, 122 | }) 123 | ); 124 | }); 125 | 126 | // Other files like favicon, php, sourcele-icon on root directory 127 | gulp.task("others:build", function () { 128 | return gulp.src(path.src.others).pipe(gulp.dest(path.build.dirDev)); 129 | }); 130 | 131 | // Clean Build Folder 132 | gulp.task("clean", function (cb) { 133 | rimraf("./theme", cb); 134 | }); 135 | 136 | // Watch Task 137 | gulp.task("watch:build", function () { 138 | gulp.watch(path.src.html, gulp.series("html:build")); 139 | gulp.watch(path.src.htminc, gulp.series("html:build")); 140 | gulp.watch(path.src.scss, gulp.series("scss:build")); 141 | gulp.watch(path.src.js, gulp.series("js:build")); 142 | gulp.watch(path.src.images, gulp.series("images:build")); 143 | gulp.watch(path.src.plugins, gulp.series("plugins:build")); 144 | }); 145 | 146 | // Dev Task 147 | gulp.task( 148 | "default", 149 | gulp.series( 150 | "clean", 151 | "html:build", 152 | "js:build", 153 | "scss:build", 154 | "images:build", 155 | "plugins:build", 156 | "others:build", 157 | gulp.parallel("watch:build", function () { 158 | bs.init({ 159 | server: { 160 | baseDir: path.build.dirDev, 161 | }, 162 | }); 163 | }) 164 | ) 165 | ); 166 | 167 | // Build Task 168 | gulp.task( 169 | "build", 170 | gulp.series( 171 | "html:build", 172 | "js:build", 173 | "scss:build", 174 | "images:build", 175 | "plugins:build" 176 | ) 177 | ); 178 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "rappo", 3 | "version": "1.0.0", 4 | "description": "rappo free corporate website 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-rimraf": "^1.0.0", 17 | "gulp-sass": "^5.1.0", 18 | "gulp-sourcemaps": "^3.0.0", 19 | "gulp-header-comment": "^0.10.0", 20 | "sass": "^1.52.3" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /screenshots/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/screenshots/about.png -------------------------------------------------------------------------------- /screenshots/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/screenshots/contact.png -------------------------------------------------------------------------------- /screenshots/index1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/screenshots/index1.png -------------------------------------------------------------------------------- /screenshots/index2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/screenshots/index2.png -------------------------------------------------------------------------------- /screenshots/index3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/screenshots/index3.png -------------------------------------------------------------------------------- /screenshots/index4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/screenshots/index4.png -------------------------------------------------------------------------------- /screenshots/pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/screenshots/pricing.png -------------------------------------------------------------------------------- /screenshots/project-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/screenshots/project-details.png -------------------------------------------------------------------------------- /screenshots/projects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/screenshots/projects.png -------------------------------------------------------------------------------- /screenshots/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/screenshots/service.png -------------------------------------------------------------------------------- /source/about.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | @@include('blocks/nav-3.htm') 3 | @@include('blocks/page-header.htm', { 4 | "title": "Creative It agency", 5 | "description": "We'd love to talk about how we can help you." 6 | }) 7 | 8 | 9 | @@include('blocks/process.htm') 10 | 11 | @@include('blocks/portfolio.htm') 12 | 13 | 14 | @@include('blocks/testimonial.htm') 15 | @@include('blocks/blog.htm') 16 | 17 | @@include('blocks/footer.htm') 18 | 19 | @@include('footer.htm') 20 | -------------------------------------------------------------------------------- /source/contact.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | @@include('blocks/nav-3.htm') 3 | @@include('blocks/page-contact.htm', { 4 | "title": "Got a question?", 5 | "description": "We'd love to talk about how we can help you." 6 | }) 7 | 8 | @@include('blocks/contact.htm') 9 | @@include('blocks/footer.htm') 10 | 11 | @@include('footer.htm') 12 | -------------------------------------------------------------------------------- /source/images/banner-img-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/banner-img-5.png -------------------------------------------------------------------------------- /source/images/banner/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/banner/about.jpg -------------------------------------------------------------------------------- /source/images/banner/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/banner/banner-2.jpg -------------------------------------------------------------------------------- /source/images/banner/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/banner/banner.jpg -------------------------------------------------------------------------------- /source/images/banner/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/banner/img2.jpg -------------------------------------------------------------------------------- /source/images/banner/p-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/banner/p-1.jpg -------------------------------------------------------------------------------- /source/images/banner/p-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/banner/p-4.jpg -------------------------------------------------------------------------------- /source/images/banner/p-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/banner/p-6.jpg -------------------------------------------------------------------------------- /source/images/banner/service.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/banner/service.jpg -------------------------------------------------------------------------------- /source/images/bg/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/bg/10.jpg -------------------------------------------------------------------------------- /source/images/bg/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/bg/6.jpg -------------------------------------------------------------------------------- /source/images/bg/banner_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/bg/banner_bg.jpg -------------------------------------------------------------------------------- /source/images/bg/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/bg/bg2.png -------------------------------------------------------------------------------- /source/images/blog-lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/blog-lg.jpg -------------------------------------------------------------------------------- /source/images/blog/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/blog/blog-1.jpg -------------------------------------------------------------------------------- /source/images/blog/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/blog/blog-2.jpg -------------------------------------------------------------------------------- /source/images/blog/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/blog/blog-3.jpg -------------------------------------------------------------------------------- /source/images/client/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/client/img-1.jpg -------------------------------------------------------------------------------- /source/images/client/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/client/img-2.jpg -------------------------------------------------------------------------------- /source/images/client/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/client/img-3.jpg -------------------------------------------------------------------------------- /source/images/client/test-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/client/test-1.jpg -------------------------------------------------------------------------------- /source/images/client/test-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/client/test-2.jpg -------------------------------------------------------------------------------- /source/images/client/test-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/client/test-3.jpg -------------------------------------------------------------------------------- /source/images/client/test-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/client/test-4.jpg -------------------------------------------------------------------------------- /source/images/client/test-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/client/test-5.jpg -------------------------------------------------------------------------------- /source/images/client/test-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/client/test-6.jpg -------------------------------------------------------------------------------- /source/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/favicon.png -------------------------------------------------------------------------------- /source/images/ico/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/ico/apple-icon-180x180.png -------------------------------------------------------------------------------- /source/images/ico/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | #ffffff -------------------------------------------------------------------------------- /source/images/ico/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/ico/favicon.ico -------------------------------------------------------------------------------- /source/images/ico/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "App", 3 | "icons": [ 4 | { 5 | "src": "\/android-icon-36x36.png", 6 | "sizes": "36x36", 7 | "type": "image\/png", 8 | "density": "0.75" 9 | }, 10 | { 11 | "src": "\/android-icon-48x48.png", 12 | "sizes": "48x48", 13 | "type": "image\/png", 14 | "density": "1.0" 15 | }, 16 | { 17 | "src": "\/android-icon-72x72.png", 18 | "sizes": "72x72", 19 | "type": "image\/png", 20 | "density": "1.5" 21 | }, 22 | { 23 | "src": "\/android-icon-96x96.png", 24 | "sizes": "96x96", 25 | "type": "image\/png", 26 | "density": "2.0" 27 | }, 28 | { 29 | "src": "\/android-icon-144x144.png", 30 | "sizes": "144x144", 31 | "type": "image\/png", 32 | "density": "3.0" 33 | }, 34 | { 35 | "src": "\/android-icon-192x192.png", 36 | "sizes": "192x192", 37 | "type": "image\/png", 38 | "density": "4.0" 39 | } 40 | ] 41 | } -------------------------------------------------------------------------------- /source/images/icon/if_envelope-stats_1291753.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/images/icon/if_glass-stats_1291748.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/images/icon/if_price-tag_1291777.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/images/icon/if_target_1291767.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/images/process/process-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/process/process-1.jpg -------------------------------------------------------------------------------- /source/images/process/process-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/process/process-2.jpg -------------------------------------------------------------------------------- /source/images/process/process-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/process/process-3.jpg -------------------------------------------------------------------------------- /source/images/projects/2-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/projects/2-min.jpg -------------------------------------------------------------------------------- /source/images/projects/p-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/projects/p-1.jpg -------------------------------------------------------------------------------- /source/images/projects/p-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/projects/p-2.jpg -------------------------------------------------------------------------------- /source/images/projects/p-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/projects/p-3.jpg -------------------------------------------------------------------------------- /source/images/projects/p-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/projects/p-4.jpg -------------------------------------------------------------------------------- /source/images/projects/p-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/projects/p-5.jpg -------------------------------------------------------------------------------- /source/images/projects/p-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/projects/p-6.jpg -------------------------------------------------------------------------------- /source/images/service/47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/service/47.jpg -------------------------------------------------------------------------------- /source/images/service/55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/service/55.jpg -------------------------------------------------------------------------------- /source/images/service/service-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/service/service-1.jpg -------------------------------------------------------------------------------- /source/images/service/service-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/service/service-2.jpg -------------------------------------------------------------------------------- /source/images/service/service-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/service/service-3.jpg -------------------------------------------------------------------------------- /source/images/work/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/work/10.jpg -------------------------------------------------------------------------------- /source/images/work/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/work/11.jpg -------------------------------------------------------------------------------- /source/images/work/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/work/12.jpg -------------------------------------------------------------------------------- /source/images/work/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/work/13.jpg -------------------------------------------------------------------------------- /source/images/work/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/work/14.jpg -------------------------------------------------------------------------------- /source/images/work/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/images/work/15.jpg -------------------------------------------------------------------------------- /source/index-2.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | 3 | @@include('blocks/nav-2.htm') 4 | 5 | @@include('blocks/slider-2.htm') 6 | 7 | @@include('blocks/about-2.htm') 8 | 9 | @@include('blocks/process-2.htm') 10 | @@include('blocks/service-2.htm') 11 | @@include('blocks/service.htm') 12 | 13 | @@include('blocks/pricing.htm') 14 | 15 | @@include('blocks/portfolio-2.htm') 16 | 17 | @@include('blocks/testimonial.htm') 18 | @@include('blocks/blog.htm') 19 | 20 | @@include('blocks/footer.htm') 21 | 22 | @@include('footer.htm') 23 | -------------------------------------------------------------------------------- /source/index-3.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | 3 | @@include('blocks/nav-3.htm') 4 | 5 | @@include('blocks/slider-3.htm') 6 | 7 | @@include('blocks/about-2.htm') 8 | 9 | @@include('blocks/process-2.htm') 10 | @@include('blocks/service-2.htm') 11 | @@include('blocks/service.htm') 12 | 13 | @@include('blocks/pricing.htm') 14 | 15 | @@include('blocks/portfolio-2.htm') 16 | 17 | @@include('blocks/testimonial.htm') 18 | @@include('blocks/blog.htm') 19 | 20 | @@include('blocks/footer.htm') 21 | 22 | @@include('footer.htm') 23 | -------------------------------------------------------------------------------- /source/index-4.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | 3 | @@include('blocks/nav-4.htm') 4 | 5 | @@include('blocks/slider-4.htm') 6 | 7 | @@include('blocks/about.htm') 8 | 9 | @@include('blocks/feature.htm') 10 | @@include('blocks/process.htm') 11 | 12 | @@include('blocks/service.htm') 13 | @@include('blocks/pricing.htm') 14 | 15 | @@include('blocks/portfolio.htm') 16 | 17 | @@include('blocks/testimonial.htm') 18 | @@include('blocks/blog.htm') 19 | 20 | @@include('blocks/footer.htm') 21 | 22 | @@include('footer.htm') 23 | -------------------------------------------------------------------------------- /source/index.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | 3 | @@include('blocks/navigation.htm') 4 | 5 | @@include('blocks/slider.htm') 6 | 7 | @@include('blocks/about.htm') 8 | 9 | @@include('blocks/intro.htm') 10 | @@include('blocks/process.htm') 11 | 12 | @@include('blocks/service.htm') 13 | @@include('blocks/pricing.htm') 14 | 15 | @@include('blocks/portfolio.htm') 16 | 17 | @@include('blocks/testimonial.htm') 18 | @@include('blocks/blog.htm') 19 | 20 | @@include('blocks/footer.htm') 21 | 22 | @@include('footer.htm') -------------------------------------------------------------------------------- /source/js/script.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 'use strict'; 3 | 4 | // PRELOADER 5 | $(window).on('load', function () { 6 | $('#page-loader').fadeOut('slow', function () { 7 | $(this).remove(); 8 | }); 9 | }); 10 | 11 | // navbarDropdown 12 | if ($(window).width() < 992) { 13 | $('.has-dropdown .dropdown-toggle').on('click', function () { 14 | $(this).siblings('.dropdown-menu').animate({ 15 | height: 'toggle' 16 | }, 300); 17 | }); 18 | } 19 | 20 | 21 | // SCROLL TO TOP 22 | $(window).on('scroll', function () { 23 | if ($(window).scrollTop() > 70) { 24 | $('.scroll-to-top').addClass('reveal'); 25 | } else { 26 | $('.scroll-to-top').removeClass('reveal'); 27 | } 28 | }); 29 | 30 | 31 | // Fixed header 32 | $(window).on('scroll', function () { 33 | if ($(window).scrollTop() > 70) { 34 | $('.site-navigation,.trans-navigation').addClass('header-white'); 35 | } else { 36 | $('.site-navigation,.trans-navigation').removeClass('header-white'); 37 | } 38 | }); 39 | 40 | 41 | // scroll-to-top 42 | if ($('#scroll-to-top').length) { 43 | $('#scroll-to-top').on('click', function () { 44 | $('body,html').animate({ 45 | scrollTop: 0 46 | }, 600); 47 | return false; 48 | }); 49 | } 50 | 51 | 52 | // Closes responsive menu when a scroll trigger link is clicked 53 | $('.js-scroll-trigger').on('click', function (event) { 54 | $('.navbar-collapse').collapse('hide'); 55 | }); 56 | 57 | })(jQuery); 58 | -------------------------------------------------------------------------------- /source/partials/blocks/about-2.htm: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 | 7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | 15 |
16 |

The right advice

17 |

Our team are experts in matching you with the right provider.

18 |
19 |
20 | 21 |
22 |
23 |
24 | 25 |
26 |

Recognised for excellence

27 |

We've been awarded for our high rate of customer satisfaction.

28 |
29 |
30 | 31 |
32 |
33 |
34 | 35 |
36 |

Compare the best

37 |

We only compare market leaders with a reputation for service quality.

38 |
39 |
40 | 41 |
42 |
43 |
44 | 45 |
46 |

Premium Services

47 |

We only compare market leaders with a reputation for service quality.

48 |
49 |
50 |
51 |
52 |
53 |
54 |
-------------------------------------------------------------------------------- /source/partials/blocks/about.htm: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |
7 | 8 |
9 |

The right advice

10 |

Our team are experts in matching you with the right provider.

11 |
12 |
13 | 14 |
15 |
16 |
17 | 18 |
19 |

Recognised for excellence

20 |

We've been awarded for our high rate of customer satisfaction.

21 |
22 |
23 | 24 |
25 |
26 |
27 | 28 |
29 |

Compare the best

30 |

We only compare market leaders with a reputation for service quality.

31 |
32 |
33 | 34 |
35 |
36 |
37 | 38 |
39 |

Premium Services

40 |

We only compare market leaders with a reputation for service quality.

41 |
42 |
43 |
44 |
45 |
46 | -------------------------------------------------------------------------------- /source/partials/blocks/blog-posts.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/partials/blocks/blog-posts.htm -------------------------------------------------------------------------------- /source/partials/blocks/blog.htm: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 | 7 |

8 | Read our latest news 9 |

10 | 11 | 12 |

13 | Our duty towards you is to share our experience we're reaching in our work path with you. 14 |

15 |
16 |
17 |
18 | 19 |
20 |
21 |
22 |
23 | 24 |
25 |
26 |
27 |
17 October 2018
28 | 29 |

Top tips to speed up your site in a speedy time

30 |
31 |

There are many variations of passages Lorem Ipsum available, but majority have ama suffered altratio. the lorem.

32 | Read More 33 |
34 |
35 |
36 |
37 | 38 |
39 |
40 |
41 | 42 |
43 |
44 |
45 |
17 October 2018
46 | 47 |

Brand your site value with marketing strategies

48 |
49 | 50 |

There are many variations of passages Lorem Ipsum available, but majority have ama suffered altratio. the lorem.

51 | Read More 52 |
53 |
54 |
55 |
56 | 57 |
58 |
59 |
60 | 61 |
62 |
63 |
64 |
17 October 2018
65 | 66 |

Website Optimization is very essential for site speed

67 |
68 |

There are many variations of passages Lorem Ipsum available, but majority have ama suffered altratio. the lorem.

69 | Read More 70 |
71 |
72 |
73 |
74 |
75 |
76 |
-------------------------------------------------------------------------------- /source/partials/blocks/call-to-action.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/partials/blocks/call-to-action.htm -------------------------------------------------------------------------------- /source/partials/blocks/clinets-logo.htm: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 |
6 |
7 | 45 |
46 |
47 |
48 |
49 |
-------------------------------------------------------------------------------- /source/partials/blocks/footer.htm: -------------------------------------------------------------------------------- 1 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | -------------------------------------------------------------------------------- /source/partials/blocks/instagram-feed.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/partials/blocks/instagram-feed.htm -------------------------------------------------------------------------------- /source/partials/blocks/nav-3.htm: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | 6 | 7 | 8 | 10 | -------------------------------------------------------------------------------- /source/partials/blocks/nav-4.htm: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 |
5 | 6 | 7 | 9 | 10 | -------------------------------------------------------------------------------- /source/partials/blocks/page-contact.htm: -------------------------------------------------------------------------------- 1 | 2 | 4 |
5 |
6 | 7 |
8 |
9 |
10 |
11 |

@@title

12 |

@@description

13 |
14 |
15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /source/partials/blocks/page-header.htm: -------------------------------------------------------------------------------- 1 | 2 | 4 |
5 |
6 | 7 |
8 |
9 |
10 |
11 |

@@title

12 |

@@description

13 |
14 |
15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /source/partials/blocks/page-pricing.html: -------------------------------------------------------------------------------- 1 | 2 | 4 |
5 |
6 | 7 |
8 |
9 |
10 |
11 |

@@title

12 |

@@description

13 |
14 |
15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /source/partials/blocks/page-project.htm: -------------------------------------------------------------------------------- 1 | 2 | 4 |
5 |
6 | 7 |
8 |
9 |
10 |
11 |

@@title

12 |

@@description

13 |
14 |
15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /source/partials/blocks/page-service.htm: -------------------------------------------------------------------------------- 1 | 2 | 4 |
5 |
6 | 7 |
8 |
9 |
10 |
11 |

@@title

12 |

@@description

13 |
14 |
15 |
16 |
17 |
18 | -------------------------------------------------------------------------------- /source/partials/blocks/page-title.htm: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |

@@title

7 |

@@description

8 |
9 |
10 |
11 |
12 |
-------------------------------------------------------------------------------- /source/partials/blocks/portfolio.htm: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |
7 |

We are trying to deliver 100% quality product and success their business to achieve ultimate goal.

8 |
9 |
10 |
11 |

We are providing best service since 1990 to present , committed to best service delivery.Nullam metus enim, placerat in lacus vel, porttitor egestas libero. Etiam ex risus, feugiat eget accumsan eu, sagittis eu urna. In eget ultrices metus. Nunc accumsan

12 |
13 |
14 |
15 |
16 | 17 |
18 |
19 |
20 |
21 |
22 | 23 |
24 |

Project: onepage

25 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate eligendi consequuntur veniam quod

26 |
27 |
28 |
29 |
30 |
31 | 32 |
33 |

Project: business

34 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate eligendi consequuntur veniam quod

35 |
36 |
37 |
38 |
39 |
40 | 41 |
42 |

Project : Marketing

43 |

Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cupiditate eligendi consequuntur veniam quod

44 |
45 |
46 |
47 |
48 | 49 |
50 |
51 |
52 | 53 |
54 |
55 |
56 |
57 |

Do you know who we are?

58 |

More than just service your products...

59 |

Explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and we will give you a complete account of the system.

60 |
61 |
62 |
63 |
64 |
-------------------------------------------------------------------------------- /source/partials/blocks/post-sidebar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/partials/blocks/post-sidebar.htm -------------------------------------------------------------------------------- /source/partials/blocks/pricing.htm: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 |
5 |
6 |
7 | 8 |

9 | Affordable Price Plan 10 |

11 | 12 | 13 |

14 | Rappo can be used to create anything from a small marketing page to a sophisticated website. 15 |

16 |
17 |
18 |
19 | 20 |
21 |
22 |
23 |

Stnadard

24 |
25 |

$13monthly

26 |
27 | 28 |
    29 |
  • Unlimited Domain
  • 30 |
  • Unmetered Bandwidth
  • 31 |
  • Free SSL Certificate
  • 32 |
  • 20 Email Subscription
  • 33 |
  • SSD Hosting
  • 34 |
35 | 36 | Purchase Now 37 |
38 |
39 |
40 |
41 |

Premium

42 |
43 |

$23monthly

44 |
45 | 46 |
    47 |
  • Unlimited Domain
  • 48 |
  • Unmetered Bandwidth
  • 49 |
  • Free SSL Certificate
  • 50 |
  • 20 Email Subscription
  • 51 |
  • SSD Hosting
  • 52 |
53 | 54 | Purchase Now 55 |
56 |
57 |
58 |
59 |

Business

60 |
61 |

$33monthly

62 |
63 | 64 |
    65 |
  • Unlimited Domain
  • 66 |
  • Unmetered Bandwidth
  • 67 |
  • Free SSL Certificate
  • 68 |
  • 20 Email Subscription
  • 69 |
  • SSD Hosting
  • 70 |
71 | 72 | Purchase Now 73 |
74 |
75 |
76 |
77 |
-------------------------------------------------------------------------------- /source/partials/blocks/process-2.htm: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 | 7 |

8 | Our Working process 9 |

10 | 11 | 12 |

13 | Rappo can be used to create anything from a small marketing page to a sophisticated website. 14 |

15 |
16 |
17 |
18 | 19 |
20 |
21 |
22 | 23 | 24 |

Project Research

25 |

Nihil facere delectus eaque aut possimus nobis laudantium reprehenderit.

26 |
27 |
28 |
29 |
30 | 31 | 32 |

Project demostration

33 |

Nihil facere delectus eaque aut possimus nobis laudantium reprehenderit.

34 |
35 |
36 |
37 |
38 | 39 | 40 |

Development & delivery

41 |

Nihil facere delectus eaque aut possimus nobis laudantium reprehenderit.

42 |
43 |
44 |
45 |
46 |
-------------------------------------------------------------------------------- /source/partials/blocks/process.htm: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 | 7 |

8 | Our Working process 9 |

10 | 11 | 12 |

13 | Rappo can be used to create anything from a small marketing page to a sophisticated website. 14 |

15 | 16 |
17 |
18 |
19 | 20 |
21 |
22 |
23 | 24 | 25 |

Project Research

26 |

Nihil facere delectus eaque aut possimus nobis laudantium reprehenderit.

27 |
28 |
29 |
30 |
31 | 32 | 33 |

Project demostration

34 |

Nihil facere delectus eaque aut possimus nobis laudantium reprehenderit.

35 |
36 |
37 |
38 |
39 | 40 | 41 |

Development & delivery

42 |

Nihil facere delectus eaque aut possimus nobis laudantium reprehenderit.

43 |
44 |
45 |
46 |
47 |
48 | -------------------------------------------------------------------------------- /source/partials/blocks/rightbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/partials/blocks/rightbar.htm -------------------------------------------------------------------------------- /source/partials/blocks/service-2.htm: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 |

Get a better deal and start saving money today

7 |
8 |
9 |
10 | 11 |
12 |
13 |
14 |
15 | 16 |
17 |
18 |

Backup System

19 |

Our team are experts in matching you with the right provider.

20 |
21 |
22 |
23 | 24 |
25 |
26 |
27 | 28 |
29 |
30 |

Cloud Hosting

31 |

Our team are experts in matching you with the right provider.

32 |
33 |
34 |
35 | 36 |
37 |
38 |
39 | 40 |
41 |
42 |

Web hosting

43 |

Our team are experts in matching you with the right provider.

44 |
45 |
46 |
47 | 48 |
49 |
50 |
51 | 52 |
53 |
54 |

Office Cloud

55 |

Our team are experts in matching you with the right provider.

56 |
57 |
58 |
59 | 60 |
61 |
62 |
63 | 64 |
65 |
66 |

Web hosting

67 |

Our team are experts in matching you with the right provider.

68 |
69 |
70 |
71 | 72 |
73 |
74 |
75 | 76 |
77 |
78 |

Office Cloud

79 |

Our team are experts in matching you with the right provider.

80 |
81 |
82 |
83 |
84 | 85 |
86 |
87 |

Want to know more about this? Contact us

88 |
89 |
90 |
91 |
-------------------------------------------------------------------------------- /source/partials/blocks/service.htm: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 |
6 | 7 |

8 | Web Services 9 |

10 | 11 | 12 |

13 | Rappo can be used to create anything from a small marketing page to a sophisticated website. 14 |

15 |
16 |
17 |
18 | 19 |
20 |
21 |
22 | 23 |

Creative Design

24 |

Afraid we praise lively he suffer family estate is. Ample order up in of in ready. Timed blind had .

25 |
26 |
27 |
28 |
29 | 30 |

Web Development

31 |

Afraid we praise lively he suffer family estate is. Ample order up in of in ready. Timed blind had .

32 |
33 |
34 |
35 |
36 | 37 |

Digital Marketing

38 |

Afraid we praise lively he suffer family estate is. Ample order up in of in ready. Timed blind had .

39 |
40 |
41 | 42 |
43 |
44 | 45 |

Graphic Design

46 |

Afraid we praise lively he suffer family estate is. Ample order up in of in ready. Timed blind had .

47 |
48 |
49 |
50 |
51 | 52 |

App Development

53 |

Afraid we praise lively he suffer family estate is. Ample order up in of in ready. Timed blind had .

54 |
55 |
56 |
57 |
58 | 59 |

Wordpress Installation

60 |

Afraid we praise lively he suffer family estate is. Ample order up in of in ready. Timed blind had .

61 |
62 |
63 |
64 |
65 |
-------------------------------------------------------------------------------- /source/partials/blocks/slider-2.htm: -------------------------------------------------------------------------------- 1 | 2 | 4 | 52 | -------------------------------------------------------------------------------- /source/partials/blocks/slider-3.htm: -------------------------------------------------------------------------------- 1 | 3 | 29 | -------------------------------------------------------------------------------- /source/partials/blocks/slider-4.htm: -------------------------------------------------------------------------------- 1 | 3 | 31 | -------------------------------------------------------------------------------- /source/partials/blocks/slider.htm: -------------------------------------------------------------------------------- 1 | 2 | 4 | 37 | -------------------------------------------------------------------------------- /source/partials/footer.htm: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /source/partials/header.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | Rappo - It solutions & Corporate template 9 | 10 | 12 | 13 | 14 | 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 | 41 | 42 | -------------------------------------------------------------------------------- /source/plugins/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /source/plugins/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /source/plugins/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /source/plugins/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /source/plugins/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /source/plugins/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /source/plugins/fontawesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fontawesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /source/plugins/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /source/plugins/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /source/plugins/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /source/plugins/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /source/plugins/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /source/plugins/fonts/Pe-icon-7-stroke.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fonts/Pe-icon-7-stroke.eot -------------------------------------------------------------------------------- /source/plugins/fonts/Pe-icon-7-stroke.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fonts/Pe-icon-7-stroke.ttf -------------------------------------------------------------------------------- /source/plugins/fonts/Pe-icon-7-stroke.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/fonts/Pe-icon-7-stroke.woff -------------------------------------------------------------------------------- /source/plugins/google-map/gmap.js: -------------------------------------------------------------------------------- 1 | window.marker = null; 2 | 3 | function initialize() { 4 | var map; 5 | 6 | var nottingham = new google.maps.LatLng(51.507351, -0.127758); 7 | 8 | var style = [{ 9 | "featureType": "road.highway", 10 | "elementType": "geometry", 11 | "stylers": [{ 12 | "saturation": -100 13 | }, 14 | { 15 | "lightness": -8 16 | }, 17 | { 18 | "gamma": 1.18 19 | } 20 | ] 21 | }, { 22 | "featureType": "road.arterial", 23 | "elementType": "geometry", 24 | "stylers": [{ 25 | "saturation": -100 26 | }, 27 | { 28 | "gamma": 1 29 | }, 30 | { 31 | "lightness": -24 32 | } 33 | ] 34 | }, { 35 | "featureType": "poi", 36 | "elementType": "geometry", 37 | "stylers": [{ 38 | "saturation": -100 39 | }] 40 | }, { 41 | "featureType": "administrative", 42 | "stylers": [{ 43 | "saturation": -100 44 | }] 45 | }, { 46 | "featureType": "transit", 47 | "stylers": [{ 48 | "saturation": -100 49 | }] 50 | }, { 51 | "featureType": "water", 52 | "elementType": "geometry.fill", 53 | "stylers": [{ 54 | "saturation": -100 55 | }] 56 | }, { 57 | "featureType": "road", 58 | "stylers": [{ 59 | "saturation": -100 60 | }] 61 | }, { 62 | "featureType": "administrative", 63 | "stylers": [{ 64 | "saturation": -100 65 | }] 66 | }, { 67 | "featureType": "landscape", 68 | "stylers": [{ 69 | "saturation": -100 70 | }] 71 | }, { 72 | "featureType": "poi", 73 | "stylers": [{ 74 | "saturation": -100 75 | }] 76 | }, {}]; 77 | 78 | var mapOptions = { 79 | // SET THE CENTER 80 | center: nottingham, 81 | 82 | // SET THE MAP STYLE & ZOOM LEVEL 83 | mapTypeId: google.maps.MapTypeId.ROADMAP, 84 | 85 | // SET THE BACKGROUND COLOUR 86 | backgroundColor: "#000", 87 | 88 | // REMOVE ALL THE CONTROLS EXCEPT ZOOM 89 | zoom: 17, 90 | panControl: false, 91 | zoomControl: true, 92 | mapTypeControl: false, 93 | scaleControl: false, 94 | streetViewControl: false, 95 | overviewMapControl: false, 96 | zoomControlOptions: { 97 | style: google.maps.ZoomControlStyle.LARGE 98 | } 99 | 100 | } 101 | map = new google.maps.Map(document.getElementById('map'), mapOptions); 102 | // SET THE MAP TYPE 103 | var mapType = new google.maps.StyledMapType(style, { 104 | name: "Grayscale" 105 | }); 106 | map.mapTypes.set('grey', mapType); 107 | map.setMapTypeId('grey'); 108 | 109 | //CREATE A CUSTOM PIN ICON 110 | var marker_image = 'plugins/google-map/images/marker.png'; 111 | var pinIcon = new google.maps.MarkerImage(marker_image, null, null, null, new google.maps.Size(74, 73)); 112 | 113 | marker = new google.maps.Marker({ 114 | position: nottingham, 115 | map: map, 116 | icon: pinIcon, 117 | title: 'eventre' 118 | }); 119 | } 120 | 121 | if ($('#map').length) { 122 | google.maps.event.addDomListener(window, 'load', initialize); 123 | } 124 | -------------------------------------------------------------------------------- /source/plugins/google-map/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/google-map/images/marker.png -------------------------------------------------------------------------------- /source/plugins/slick-carousel/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/slick-carousel/slick/ajax-loader.gif -------------------------------------------------------------------------------- /source/plugins/slick-carousel/slick/config.rb: -------------------------------------------------------------------------------- 1 | css_dir = "." 2 | sass_dir = "." 3 | images_dir = "." 4 | fonts_dir = "fonts" 5 | relative_assets = true 6 | 7 | output_style = :compact 8 | line_comments = false 9 | 10 | preferred_syntax = :scss -------------------------------------------------------------------------------- /source/plugins/slick-carousel/slick/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/slick-carousel/slick/fonts/slick.eot -------------------------------------------------------------------------------- /source/plugins/slick-carousel/slick/fonts/slick.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generated by Fontastic.me 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /source/plugins/slick-carousel/slick/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/slick-carousel/slick/fonts/slick.ttf -------------------------------------------------------------------------------- /source/plugins/slick-carousel/slick/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/slick-carousel/slick/fonts/slick.woff -------------------------------------------------------------------------------- /source/plugins/slick-carousel/slick/slick-theme.css: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | /* Slider */ 3 | .slick-loading .slick-list 4 | { 5 | background: #fff url('./ajax-loader.gif') center center no-repeat; 6 | } 7 | 8 | /* Icons */ 9 | @font-face 10 | { 11 | font-family: 'slick'; 12 | font-weight: normal; 13 | font-style: normal; 14 | 15 | src: url('./fonts/slick.eot'); 16 | src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg'); 17 | } 18 | /* Arrows */ 19 | .slick-prev, 20 | .slick-next 21 | { 22 | font-size: 0; 23 | line-height: 0; 24 | 25 | position: absolute; 26 | top: 50%; 27 | 28 | display: block; 29 | 30 | width: 20px; 31 | height: 20px; 32 | padding: 0; 33 | -webkit-transform: translate(0, -50%); 34 | -ms-transform: translate(0, -50%); 35 | transform: translate(0, -50%); 36 | 37 | cursor: pointer; 38 | 39 | color: transparent; 40 | border: none; 41 | outline: none; 42 | background: transparent; 43 | } 44 | .slick-prev:hover, 45 | .slick-prev:focus, 46 | .slick-next:hover, 47 | .slick-next:focus 48 | { 49 | color: transparent; 50 | outline: none; 51 | background: transparent; 52 | } 53 | .slick-prev:hover:before, 54 | .slick-prev:focus:before, 55 | .slick-next:hover:before, 56 | .slick-next:focus:before 57 | { 58 | opacity: 1; 59 | } 60 | .slick-prev.slick-disabled:before, 61 | .slick-next.slick-disabled:before 62 | { 63 | opacity: .25; 64 | } 65 | 66 | .slick-prev:before, 67 | .slick-next:before 68 | { 69 | font-family: 'slick'; 70 | font-size: 20px; 71 | line-height: 1; 72 | 73 | opacity: .75; 74 | color: white; 75 | 76 | -webkit-font-smoothing: antialiased; 77 | -moz-osx-font-smoothing: grayscale; 78 | } 79 | 80 | .slick-prev 81 | { 82 | left: -25px; 83 | } 84 | [dir='rtl'] .slick-prev 85 | { 86 | right: -25px; 87 | left: auto; 88 | } 89 | .slick-prev:before 90 | { 91 | content: '←'; 92 | } 93 | [dir='rtl'] .slick-prev:before 94 | { 95 | content: '→'; 96 | } 97 | 98 | .slick-next 99 | { 100 | right: -25px; 101 | } 102 | [dir='rtl'] .slick-next 103 | { 104 | right: auto; 105 | left: -25px; 106 | } 107 | .slick-next:before 108 | { 109 | content: '→'; 110 | } 111 | [dir='rtl'] .slick-next:before 112 | { 113 | content: '←'; 114 | } 115 | 116 | /* Dots */ 117 | .slick-dotted.slick-slider 118 | { 119 | margin-bottom: 30px; 120 | } 121 | 122 | .slick-dots 123 | { 124 | position: absolute; 125 | bottom: -25px; 126 | 127 | display: block; 128 | 129 | width: 100%; 130 | padding: 0; 131 | margin: 0; 132 | 133 | list-style: none; 134 | 135 | text-align: center; 136 | } 137 | .slick-dots li 138 | { 139 | position: relative; 140 | 141 | display: inline-block; 142 | 143 | width: 20px; 144 | height: 20px; 145 | margin: 0 5px; 146 | padding: 0; 147 | 148 | cursor: pointer; 149 | } 150 | .slick-dots li button 151 | { 152 | font-size: 0; 153 | line-height: 0; 154 | 155 | display: block; 156 | 157 | width: 20px; 158 | height: 20px; 159 | padding: 5px; 160 | 161 | cursor: pointer; 162 | 163 | color: transparent; 164 | border: 0; 165 | outline: none; 166 | background: transparent; 167 | } 168 | .slick-dots li button:hover, 169 | .slick-dots li button:focus 170 | { 171 | outline: none; 172 | } 173 | .slick-dots li button:hover:before, 174 | .slick-dots li button:focus:before 175 | { 176 | opacity: 1; 177 | } 178 | .slick-dots li button:before 179 | { 180 | font-family: 'slick'; 181 | font-size: 6px; 182 | line-height: 20px; 183 | 184 | position: absolute; 185 | top: 0; 186 | left: 0; 187 | 188 | width: 20px; 189 | height: 20px; 190 | 191 | content: '•'; 192 | text-align: center; 193 | 194 | opacity: .25; 195 | color: black; 196 | 197 | -webkit-font-smoothing: antialiased; 198 | -moz-osx-font-smoothing: grayscale; 199 | } 200 | .slick-dots li.slick-active button:before 201 | { 202 | opacity: .75; 203 | color: black; 204 | } 205 | -------------------------------------------------------------------------------- /source/plugins/slick-carousel/slick/slick.css: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | .slick-slider 3 | { 4 | position: relative; 5 | 6 | display: block; 7 | box-sizing: border-box; 8 | 9 | -webkit-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | 14 | -webkit-touch-callout: none; 15 | -khtml-user-select: none; 16 | -ms-touch-action: pan-y; 17 | touch-action: pan-y; 18 | -webkit-tap-highlight-color: transparent; 19 | } 20 | 21 | .slick-list 22 | { 23 | position: relative; 24 | 25 | display: block; 26 | overflow: hidden; 27 | 28 | margin: 0; 29 | padding: 0; 30 | } 31 | .slick-list:focus 32 | { 33 | outline: none; 34 | } 35 | .slick-list.dragging 36 | { 37 | cursor: pointer; 38 | cursor: hand; 39 | } 40 | 41 | .slick-slider .slick-track, 42 | .slick-slider .slick-list 43 | { 44 | -webkit-transform: translate3d(0, 0, 0); 45 | -moz-transform: translate3d(0, 0, 0); 46 | -ms-transform: translate3d(0, 0, 0); 47 | -o-transform: translate3d(0, 0, 0); 48 | transform: translate3d(0, 0, 0); 49 | } 50 | 51 | .slick-track 52 | { 53 | position: relative; 54 | top: 0; 55 | left: 0; 56 | 57 | display: block; 58 | margin-left: auto; 59 | margin-right: auto; 60 | } 61 | .slick-track:before, 62 | .slick-track:after 63 | { 64 | display: table; 65 | 66 | content: ''; 67 | } 68 | .slick-track:after 69 | { 70 | clear: both; 71 | } 72 | .slick-loading .slick-track 73 | { 74 | visibility: hidden; 75 | } 76 | 77 | .slick-slide 78 | { 79 | display: none; 80 | float: left; 81 | 82 | height: 100%; 83 | min-height: 1px; 84 | } 85 | [dir='rtl'] .slick-slide 86 | { 87 | float: right; 88 | } 89 | .slick-slide img 90 | { 91 | display: block; 92 | } 93 | .slick-slide.slick-loading img 94 | { 95 | display: none; 96 | } 97 | .slick-slide.dragging img 98 | { 99 | pointer-events: none; 100 | } 101 | .slick-initialized .slick-slide 102 | { 103 | display: block; 104 | } 105 | .slick-loading .slick-slide 106 | { 107 | visibility: hidden; 108 | } 109 | .slick-vertical .slick-slide 110 | { 111 | display: block; 112 | 113 | height: auto; 114 | 115 | border: 1px solid transparent; 116 | } 117 | .slick-arrow.slick-hidden { 118 | display: none; 119 | } 120 | -------------------------------------------------------------------------------- /source/plugins/slick-carousel/slick/slick.less: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | 3 | .slick-slider { 4 | position: relative; 5 | display: block; 6 | box-sizing: border-box; 7 | -webkit-touch-callout: none; 8 | -webkit-user-select: none; 9 | -khtml-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | -ms-touch-action: pan-y; 14 | touch-action: pan-y; 15 | -webkit-tap-highlight-color: transparent; 16 | } 17 | .slick-list { 18 | position: relative; 19 | overflow: hidden; 20 | display: block; 21 | margin: 0; 22 | padding: 0; 23 | 24 | &:focus { 25 | outline: none; 26 | } 27 | 28 | &.dragging { 29 | cursor: pointer; 30 | cursor: hand; 31 | } 32 | } 33 | .slick-slider .slick-track, 34 | .slick-slider .slick-list { 35 | -webkit-transform: translate3d(0, 0, 0); 36 | -moz-transform: translate3d(0, 0, 0); 37 | -ms-transform: translate3d(0, 0, 0); 38 | -o-transform: translate3d(0, 0, 0); 39 | transform: translate3d(0, 0, 0); 40 | } 41 | 42 | .slick-track { 43 | position: relative; 44 | left: 0; 45 | top: 0; 46 | display: block; 47 | margin-left: auto; 48 | margin-right: auto; 49 | 50 | &:before, 51 | &:after { 52 | content: ""; 53 | display: table; 54 | } 55 | 56 | &:after { 57 | clear: both; 58 | } 59 | 60 | .slick-loading & { 61 | visibility: hidden; 62 | } 63 | } 64 | .slick-slide { 65 | float: left; 66 | height: 100%; 67 | min-height: 1px; 68 | [dir="rtl"] & { 69 | float: right; 70 | } 71 | img { 72 | display: block; 73 | } 74 | &.slick-loading img { 75 | display: none; 76 | } 77 | 78 | display: none; 79 | 80 | &.dragging img { 81 | pointer-events: none; 82 | } 83 | 84 | .slick-initialized & { 85 | display: block; 86 | } 87 | 88 | .slick-loading & { 89 | visibility: hidden; 90 | } 91 | 92 | .slick-vertical & { 93 | display: block; 94 | height: auto; 95 | border: 1px solid transparent; 96 | } 97 | } 98 | .slick-arrow.slick-hidden { 99 | display: none; 100 | } 101 | -------------------------------------------------------------------------------- /source/plugins/slick-carousel/slick/slick.scss: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | 3 | .slick-slider { 4 | position: relative; 5 | display: block; 6 | box-sizing: border-box; 7 | -webkit-touch-callout: none; 8 | -webkit-user-select: none; 9 | -khtml-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | -ms-touch-action: pan-y; 14 | touch-action: pan-y; 15 | -webkit-tap-highlight-color: transparent; 16 | } 17 | .slick-list { 18 | position: relative; 19 | overflow: hidden; 20 | display: block; 21 | margin: 0; 22 | padding: 0; 23 | 24 | &:focus { 25 | outline: none; 26 | } 27 | 28 | &.dragging { 29 | cursor: pointer; 30 | cursor: hand; 31 | } 32 | } 33 | .slick-slider .slick-track, 34 | .slick-slider .slick-list { 35 | -webkit-transform: translate3d(0, 0, 0); 36 | -moz-transform: translate3d(0, 0, 0); 37 | -ms-transform: translate3d(0, 0, 0); 38 | -o-transform: translate3d(0, 0, 0); 39 | transform: translate3d(0, 0, 0); 40 | } 41 | 42 | .slick-track { 43 | position: relative; 44 | left: 0; 45 | top: 0; 46 | display: block; 47 | margin-left: auto; 48 | margin-right: auto; 49 | 50 | &:before, 51 | &:after { 52 | content: ""; 53 | display: table; 54 | } 55 | 56 | &:after { 57 | clear: both; 58 | } 59 | 60 | .slick-loading & { 61 | visibility: hidden; 62 | } 63 | } 64 | .slick-slide { 65 | float: left; 66 | height: 100%; 67 | min-height: 1px; 68 | [dir="rtl"] & { 69 | float: right; 70 | } 71 | img { 72 | display: block; 73 | } 74 | &.slick-loading img { 75 | display: none; 76 | } 77 | 78 | display: none; 79 | 80 | &.dragging img { 81 | pointer-events: none; 82 | } 83 | 84 | .slick-initialized & { 85 | display: block; 86 | } 87 | 88 | .slick-loading & { 89 | visibility: hidden; 90 | } 91 | 92 | .slick-vertical & { 93 | display: block; 94 | height: auto; 95 | border: 1px solid transparent; 96 | } 97 | } 98 | .slick-arrow.slick-hidden { 99 | display: none; 100 | } 101 | -------------------------------------------------------------------------------- /source/plugins/themify/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/themify/fonts/themify.eot -------------------------------------------------------------------------------- /source/plugins/themify/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/themify/fonts/themify.ttf -------------------------------------------------------------------------------- /source/plugins/themify/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/plugins/themify/fonts/themify.woff -------------------------------------------------------------------------------- /source/pricing.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | @@include('blocks/nav-3.htm') 3 | @@include('blocks/page-pricing.html', { 4 | "title": "Our Pricing plan", 5 | "description": "You can aso make your own custom plan model for your business." 6 | }) 7 | 8 | 9 | @@include('blocks/pricing.htm') 10 | 11 | @@include('blocks/testimonial.htm') 12 | 13 | 14 | @@include('blocks/footer.htm') 15 | 16 | @@include('footer.htm') 17 | -------------------------------------------------------------------------------- /source/project.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | @@include('blocks/nav-3.htm') 3 | @@include('blocks/page-project.htm', { 4 | "title": "We create your brand", 5 | "description": "We'd love to talk about how we can help you." 6 | }) 7 | 8 | @@include('blocks/process.htm') 9 | 10 | @@include('blocks/portfolio-2.htm') 11 | 12 | @@include('blocks/footer.htm') 13 | 14 | @@include('footer.htm') 15 | -------------------------------------------------------------------------------- /source/scss/_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/scss/_color.scss -------------------------------------------------------------------------------- /source/scss/_common.scss: -------------------------------------------------------------------------------- 1 | /*-------------------- 2 | Common Styles 3 | -----------------*/ 4 | 5 | .section-heading { 6 | margin-bottom: 80px; 7 | } 8 | 9 | img { 10 | vertical-align: middle; 11 | border-style: none; 12 | } 13 | 14 | .img-thumbnail { 15 | padding: .25rem; 16 | border: 1px solid #dee2e6; 17 | background-color: #fff 18 | } 19 | 20 | 21 | .section { 22 | position: relative; 23 | padding: 8.125rem 0; 24 | } 25 | 26 | @media (min-width:768px) { 27 | .section { 28 | padding: 7.5rem 0 29 | } 30 | } 31 | 32 | .section-top { 33 | padding-top: 8.125rem; 34 | } 35 | 36 | .section-bottom { 37 | padding-bottom: 8.125rem; 38 | } 39 | 40 | @media (min-width:768px) { 41 | .section-top { 42 | padding-top: 10.3125rem 43 | } 44 | } 45 | 46 | 47 | .bg-grey { 48 | background: #F4F7FC; 49 | } 50 | 51 | /*------------------- 52 | BUTTONS STYLE 53 | ----------------=----*/ 54 | 55 | .btn { 56 | font-size: .6875rem; 57 | font-weight: 700; 58 | position: relative; 59 | text-transform: uppercase; 60 | padding: 1rem 2.4rem; 61 | border: 0.1rem solid transparent; 62 | transition: all 0.2s ease-in-out; 63 | letter-spacing: .5px 64 | } 65 | 66 | 67 | 68 | .btn-circle { 69 | display: inline-flex; 70 | width: 4.20313rem !important; 71 | height: 4.20313rem !important; 72 | padding: 0 !important; 73 | border-radius: 50%; 74 | align-items: center; 75 | justify-content: center 76 | } 77 | 78 | 79 | .btn-outline-dark { 80 | border: 1px solid#222; 81 | } 82 | 83 | .btn-white { 84 | background: #fff; 85 | color: #212529; 86 | } 87 | 88 | .btn-trans-white { 89 | border: 1px solid#fff; 90 | color: #fff; 91 | &:hover { 92 | color: #fff; 93 | opacity: .5; 94 | } 95 | } 96 | 97 | .btn-outline-dark:hover { 98 | background: #222 !important; 99 | color: #fff !important; 100 | } 101 | 102 | .btn.btn-link { 103 | color: #212529; 104 | } 105 | 106 | .btn:focus { 107 | box-shadow: none !important 108 | } 109 | 110 | .btn-circled { 111 | border-radius: 75px; 112 | } 113 | 114 | 115 | .bg-primary, 116 | .btn-primary, 117 | .btn-white:hover { 118 | background: #21c87a !important; 119 | border-color: #21c87a !important; 120 | color: #fff; 121 | } 122 | 123 | .bg-dark, 124 | .btn-primary:hover { 125 | background: #232323 !important; 126 | border-color: #232323 !important; 127 | color: #fff; 128 | } 129 | 130 | .shadow-sm-2 { 131 | box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08); 132 | } 133 | 134 | 135 | 136 | /*------------------------ 137 | BACKGROUND 138 | ----------------------------*/ 139 | 140 | 141 | .bg-cover { 142 | background-repeat: no-repeat; 143 | background-position: 50%; 144 | background-size: cover 145 | } 146 | 147 | .bg-cover, 148 | .bg-overlay, 149 | .bg-overlay:before { 150 | position: absolute; 151 | top: 0; 152 | right: 0; 153 | bottom: 0; 154 | left: 0 155 | } 156 | 157 | .bg-overlay:before { 158 | content: ""; 159 | opacity: .55; 160 | background-color: #212529 161 | } 162 | 163 | .box-shadow { 164 | box-shadow: 0 25px 100px -5px rgba(0, 0, 0, .15) 165 | } 166 | 167 | 168 | 169 | 170 | .mt50 { 171 | margin-top: 80px; 172 | } 173 | 174 | 175 | .mb-30 { 176 | margin-bottom: 30px; 177 | } 178 | 179 | .bg-primary { 180 | background: $primary-color !important; 181 | } 182 | 183 | a { 184 | color: $primary-color; 185 | transition: 0.3s; 186 | } 187 | 188 | a:hover, 189 | a:focus { 190 | outline: none; 191 | text-decoration: none; 192 | color: darken($primary-color, 10); 193 | } 194 | -------------------------------------------------------------------------------- /source/scss/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/source/scss/_main.scss -------------------------------------------------------------------------------- /source/scss/_media-query.scss: -------------------------------------------------------------------------------- 1 | /*=== MEDIA QUERY ===*/ 2 | @mixin mobile-xs{ 3 | @media(max-width:400px){ 4 | @content; 5 | } 6 | } 7 | @mixin mobile{ 8 | @media(max-width:480px){ 9 | @content; 10 | } 11 | } 12 | @mixin tablet-xs{ 13 | @media(max-width:640px){ 14 | @content; 15 | } 16 | }@mixin tablet{ 17 | @media(max-width:768px){ 18 | @content; 19 | } 20 | } 21 | @mixin desktop{ 22 | @media(max-width:992px){ 23 | @content; 24 | } 25 | } 26 | @mixin large-desktop{ 27 | @media(max-width:1200px){ 28 | @content; 29 | } 30 | } -------------------------------------------------------------------------------- /source/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Transition 2 | @mixin transition($what: all, $time: 0.2s, $how: ease-in-out) { 3 | -webkit-transition: $what $time $how; 4 | -moz-transition: $what $time $how; 5 | -ms-transition: $what $time $how; 6 | -o-transition: $what $time $how; 7 | transition: $what $time $how; 8 | } 9 | 10 | // Transform 11 | @mixin transform($transforms) { 12 | -moz-transform: $transforms; 13 | -o-transform: $transforms; 14 | -ms-transform: $transforms; 15 | -webkit-transform: $transforms; 16 | transform: $transforms; 17 | } 18 | // rotate 19 | @mixin rotate ($deg) { 20 | @include transform(rotate(#{$deg}deg)); 21 | } 22 | 23 | // scale 24 | @mixin scale($scale) { 25 | @include transform(scale($scale)); 26 | } 27 | // translate 28 | @mixin translate ($x, $y) { 29 | @include transform(translate($x, $y)); 30 | } 31 | // skew 32 | @mixin skew ($x, $y) { 33 | @include transform(skew(#{$x}deg, #{$y}deg)); 34 | } 35 | //transform origin 36 | @mixin transform-origin ($origin) { 37 | moz-transform-origin: $origin; 38 | -o-transform-origin: $origin; 39 | -ms-transform-origin: $origin; 40 | -webkit-transform-origin: $origin; 41 | transform-origin: $origin; 42 | } -------------------------------------------------------------------------------- /source/scss/_typography.scss: -------------------------------------------------------------------------------- 1 | /*----------------------------- 2 | CSS INDEXING 3 | * -------------------------------------- 4 | * 01.GLOBAL CSS STYLE 5 | * 02.TYPOGRAPHY CSS STYLE 6 | * 03.BUTTONS STYLE 7 | * 04.HOMEPAGE CSS STYLE 8 | -LOGO CSS 9 | -MENU CSS 10 | -BACKGROUND 11 | * 05.FEATURES CSS STYLE 12 | * 06.SERVICE CSS STYLE 13 | * 07.ABOUT CSS STYLE 14 | * 08.PRICING CSS STYLE 15 | * 09.TESTIMONIAL STYLE 16 | * 10.LATEST BLOG CSS STYLE 17 | * 11.CONTACT CSS STYLE 18 | * 12.FOOTER CSS STYLE 19 | * ---------------------------------------- 20 | */ 21 | 22 | 23 | // Fonts 24 | @import url('https://fonts.googleapis.com/css?family=Muli:300,400,500,700,900'); 25 | 26 | 27 | 28 | html { 29 | font-family: sans-serif; 30 | line-height: 1.15; 31 | -webkit-text-size-adjust: 100%; 32 | -ms-text-size-adjust: 100%; 33 | -ms-overflow-style: scrollbar; 34 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0) 35 | } 36 | 37 | body { 38 | font-family: $secondary-font; 39 | font-size: 15px; 40 | line-height: 1.75; 41 | margin: 0; 42 | text-align: left; 43 | background-color: #fff; 44 | font-weight: 400; 45 | color: $black-light; 46 | } 47 | 48 | /*-------------------- 49 | TYPOGRAPHY 50 | -----------------*/ 51 | 52 | .h1, 53 | .h2, 54 | .h3, 55 | .h4, 56 | .h5, 57 | .h6, 58 | h1, 59 | h2, 60 | h3, 61 | h4, 62 | h5, 63 | h6 { 64 | 65 | font-family: $primary-font; 66 | font-weight: 700; 67 | line-height: 1.35; 68 | margin-bottom: .5rem; 69 | color: $black; 70 | } 71 | 72 | .h1, 73 | h1 { 74 | font-size: 2.125rem; 75 | line-height: 40px; 76 | } 77 | 78 | .h2, 79 | h2 { 80 | font-size: 1.625rem; 81 | } 82 | 83 | .h3, 84 | h3 { 85 | font-size: 1.375rem; 86 | } 87 | 88 | .h4, 89 | h4 { 90 | font-size: 1.125rem; 91 | } 92 | 93 | .h5, 94 | h5 { 95 | font-size: .9375rem; 96 | } 97 | 98 | .h6, 99 | h6 { 100 | font-size: .75rem; 101 | } 102 | 103 | .lead { 104 | font-size: 1.0625rem; 105 | font-weight: 300; 106 | } 107 | 108 | .font-weight-500 { 109 | font-weight: 500 !important; 110 | } 111 | 112 | .section-title { 113 | font-size: 35px; 114 | font-weight: 700; 115 | text-transform: capitalize; 116 | margin-bottom: 15px; 117 | } 118 | 119 | .bg-grey { 120 | background: $secondary-color; 121 | } -------------------------------------------------------------------------------- /source/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | $light: #fff; 2 | $primary-color: #21c87a; 3 | $secondary-color: #F4F7FC; 4 | $black: #212529; 5 | $black-light: #6c757d; 6 | $black-lighter: #888; 7 | $border-color:#eee; 8 | $primary-font: 'Muli', sans-serif; 9 | $secondary-font:'Muli', sans-serif; 10 | -------------------------------------------------------------------------------- /source/scss/style.scss: -------------------------------------------------------------------------------- 1 | @import "variables.scss"; 2 | @import "mixins.scss"; 3 | @import "media-query.scss"; 4 | @import "typography.scss"; 5 | @import "main.scss"; 6 | @import "common.scss"; 7 | @import "templates/header.scss"; 8 | @import "templates/page-banner.scss"; 9 | @import "templates/navigation.scss"; 10 | @import "templates/slider.scss"; 11 | @import "templates/backgrounds.scss"; 12 | @import "templates/about.scss"; 13 | @import "templates/service.scss"; 14 | @import "templates/portfolio.scss"; 15 | @import "templates/process.scss"; 16 | @import "templates/pricing.scss"; 17 | @import "templates/blog.scss"; 18 | @import "templates/testimonial.scss"; 19 | @import "templates/contact.scss"; 20 | @import "templates/footer.scss"; 21 | @import "responsive.scss"; 22 | -------------------------------------------------------------------------------- /source/scss/templates/_about.scss: -------------------------------------------------------------------------------- 1 | 2 | /*---------------------- 3 | FEATURE STYLE 4 | -----------------------*/ 5 | .img-icon-block { 6 | position: relative; 7 | 8 | &:before { 9 | position: absolute; 10 | content: ""; 11 | top: -27px; 12 | background-color: $primary-color; 13 | opacity: .3; 14 | width: 80px; 15 | right: 70px; 16 | height: 80px; 17 | border-radius: 50%; 18 | z-index: 1; 19 | } 20 | 21 | i{ 22 | font-size: 58px; 23 | z-index: 2!important; 24 | color: #333; 25 | position: relative; 26 | } 27 | } 28 | 29 | 30 | 31 | 32 | 33 | /*-------------------------- 34 | ABOUT-2 35 | ---------------------------*/ 36 | #about .img-block{ 37 | position: relative; 38 | -webkit-box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08); 39 | box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08); 40 | 41 | img{ 42 | border: 5px solid $primary-color; 43 | } 44 | } 45 | .pt-6{ 46 | padding-top: 4.5rem; 47 | } 48 | .img-icon i{ 49 | font-size: 60px; 50 | } 51 | -------------------------------------------------------------------------------- /source/scss/templates/_backgrounds.scss: -------------------------------------------------------------------------------- 1 | 2 | #banner-3{ 3 | position: relative; 4 | background: url("../images/banner/banner.jpg")no-repeat; 5 | -webkit-background-size: cover; 6 | background-size: cover; 7 | } 8 | 9 | #banner-4{ 10 | position: relative; 11 | background: url("../images/banner/banner-2.jpg")no-repeat; 12 | -webkit-background-size: cover; 13 | background-size: cover; 14 | } 15 | 16 | -------------------------------------------------------------------------------- /source/scss/templates/_blog.scss: -------------------------------------------------------------------------------- 1 | 2 | 3 | /*---------------------- 4 | BLOG SECTION 5 | -----------------------*/ 6 | .blog-box { 7 | position: relative; 8 | 9 | .blog-img-box img { 10 | border-radius: 5px; 11 | box-shadow: 0 7px 12px rgba(0, 0, 0, 0.08); 12 | } 13 | } 14 | 15 | 16 | 17 | 18 | .single-blog { 19 | padding-top: 25px; 20 | position: relative; 21 | } 22 | 23 | .bg-light .single-blog{ 24 | padding: 40px; 25 | text-align: center; 26 | border-bottom: 1px solid $border-color; 27 | } 28 | 29 | 30 | .blog-content { 31 | ul { 32 | margin-bottom: 10px; 33 | } 34 | a h3 { 35 | transition: all .3s ease 0s; 36 | margin: 15px 0px; 37 | } 38 | p{ 39 | margin: 20px 0px; 40 | } 41 | 42 | &:hover a h3 { 43 | color: $primary-color; 44 | } 45 | 46 | h6 span{ 47 | display: inline-block; 48 | padding-left: 10px; 49 | 50 | &:after{ 51 | display: none; 52 | } 53 | } 54 | 55 | } 56 | 57 | -------------------------------------------------------------------------------- /source/scss/templates/_contact.scss: -------------------------------------------------------------------------------- 1 | 2 | /*--------------------------- 3 | CONTACT PAGE 4 | -----------------------------*/ 5 | 6 | #contact-info{ 7 | padding-top: 90px; 8 | } 9 | .contact-info-block{ 10 | border: 1px solid $border-color; 11 | padding: 40px 20px; 12 | border-radius: 5px; 13 | 14 | h4{ 15 | margin-bottom: 0px; 16 | } 17 | i{ 18 | font-size: 40px; 19 | margin-bottom: 20px; 20 | display: block; 21 | color: $primary-color; 22 | } 23 | } 24 | 25 | 26 | .form-control:focus,.form-control:hover{ 27 | border-color: $primary-color; 28 | box-shadow: none; 29 | } 30 | 31 | 32 | /* -------------- 33 | MAP 34 | -----------------*/ 35 | 36 | #map{ 37 | height: 400px; 38 | width: 100%; 39 | } -------------------------------------------------------------------------------- /source/scss/templates/_footer.scss: -------------------------------------------------------------------------------- 1 | /*---------------------- 2 | FOOTER 3 | -----------------------*/ 4 | #footer { 5 | padding: 80px 0px; 6 | position: relative; 7 | 8 | .footer-brand { 9 | font-size: 30px; 10 | } 11 | 12 | .footer-links { 13 | padding-left: 0; 14 | list-style-type: none 15 | } 16 | 17 | } 18 | 19 | #footer { 20 | background: url("../images/bg/10.jpg"); 21 | -webkit-background-size: cover; 22 | background-size: cover; 23 | } 24 | 25 | .footer-overlay { 26 | background: #111; 27 | opacity: .94; 28 | } 29 | 30 | 31 | 32 | 33 | .footer-widget { 34 | p { 35 | color: $black-lighter; 36 | margin-top: 20px; 37 | margin-bottom: 20px; 38 | line-height: 32px; 39 | font-size: 14px; 40 | } 41 | 42 | h3 { 43 | color: $light; 44 | margin-bottom: 30px; 45 | } 46 | } 47 | 48 | 49 | 50 | .footer-links { 51 | a { 52 | color: $black-lighter; 53 | line-height: 38px; 54 | font-size: 14px; 55 | text-transform: capitalize; 56 | } 57 | i { 58 | width: 25px; 59 | } 60 | } 61 | 62 | 63 | .footer-copy { 64 | color: $black-lighter; 65 | font-size: 16px; 66 | position: relative; 67 | margin-bottom: 0; 68 | display: inline-block; 69 | 70 | &:before { 71 | position: absolute; 72 | content: ""; 73 | right: calc(100% + 30px); 74 | top: 16px; 75 | width: 2000%; 76 | height: 1px; 77 | height: 1px; 78 | background: #94959a; 79 | } 80 | } 81 | .current-year { 82 | color: $primary-color !important; 83 | } 84 | 85 | 86 | 87 | 88 | /*----------------------------- 89 | SCROLL TO TOP 90 | --------------------------------*/ 91 | .scroll-to-top { 92 | position: fixed; 93 | content: ""; 94 | right: 30px; 95 | bottom: 50px; 96 | z-index: 999; 97 | background: $primary-color; 98 | color: $light !important; 99 | border-radius: 100%; 100 | opacity: 0; 101 | 102 | i { 103 | width: 50px; 104 | height: 50px; 105 | border-radius: 100%; 106 | text-align: center; 107 | font-size: 22px; 108 | line-height: 50px; 109 | display: block; 110 | -webkit-box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08); 111 | box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08); 112 | } 113 | } 114 | 115 | .scroll-to-top:hover, 116 | .scroll-to-top:focus { 117 | text-decoration: none; 118 | } 119 | 120 | .reveal { 121 | transition: all .3s; 122 | cursor: pointer; 123 | opacity: 1; 124 | } 125 | -------------------------------------------------------------------------------- /source/scss/templates/_header.scss: -------------------------------------------------------------------------------- 1 | /*---------------------- 2 | HEADER STYLE 3 | -----------------------*/ 4 | 5 | .header-socials { 6 | line-height: 22px; 7 | margin-bottom: 0px; 8 | 9 | li { 10 | padding: 8px; 11 | 12 | a { 13 | color: #21c87a; 14 | } 15 | } 16 | } 17 | 18 | 19 | /*----------------- 20 | LOGO BAR 21 | -------------------*/ 22 | 23 | .logo-bar { 24 | padding: 30px 0px 60px; 25 | } 26 | 27 | .top-info-block { 28 | margin-right: 30px; 29 | 30 | h5, 31 | p { 32 | margin-bottom: 0px; 33 | } 34 | } 35 | 36 | 37 | .icon-block { 38 | margin-right: 20px; 39 | color: #21c87a; 40 | font-size: 40px; 41 | line-height: 20px; 42 | font-weight: 400; 43 | } 44 | 45 | 46 | .top-info-block:last-child { 47 | margin-right: 0px; 48 | } 49 | 50 | .header-bar { 51 | overflow: visible; 52 | position: relative; 53 | padding-bottom: 30px; 54 | } 55 | 56 | 57 | .main-navigation { 58 | margin-top: -40px; 59 | } 60 | 61 | 62 | 63 | 64 | /*----------------------- 65 | HOME-3 66 | ---------------------------*/ 67 | 68 | .header-white { 69 | background: $primary-color; 70 | -webkit-box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08); 71 | box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08); 72 | border-radius: 0px; 73 | } 74 | 75 | .trans-navigation { 76 | @include desktop { 77 | background: $primary-color; 78 | -webkit-box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08); 79 | box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08); 80 | border-radius: 0px; 81 | } 82 | } 83 | 84 | .trans-navigation .navbar-brand h4, 85 | .site-navigation .navbar-brand h4, 86 | .site-navigation .navbar-brand h3, 87 | .trans-navigation .navbar-brand h3 { 88 | color: $light; 89 | } 90 | 91 | .banner-content.style-2 { 92 | padding-top: 200px; 93 | } 94 | 95 | .trans-navigation .navbar-brand { 96 | padding-top: 13px; 97 | } 98 | 99 | 100 | 101 | .site-navigation.header-white { 102 | border-bottom: 1px solid transparent; 103 | } 104 | 105 | .site-navigation .navbar-brand { 106 | padding-top: 13px; 107 | margin-right: 20px; 108 | } 109 | 110 | 111 | .banner-content2 { 112 | padding: 200px 0px; 113 | 114 | .display-4 { 115 | color: $light; 116 | font-weight: 600; 117 | } 118 | 119 | p.lead { 120 | color: $light; 121 | } 122 | } 123 | 124 | 125 | 126 | 127 | 128 | 129 | /* ========================= 130 | PRELOADER 131 | =======================*/ 132 | 133 | #page-loader { 134 | background: $light; 135 | height: 100%; 136 | width: 100%; 137 | position: fixed; 138 | z-index: 1050; 139 | } 140 | 141 | .loader-icon { 142 | background: none repeat scroll 0 0 $light; 143 | border-bottom: 3px solid rgba(19, 19, 19, 0.1) !important; 144 | border-left: 3px solid rgba(19, 19, 19, 0.1) !important; 145 | border-radius: 100px; 146 | -moz-border-radius: 100px; 147 | -webkit-border-radius: 100px; 148 | -o-border-radius: 100px; 149 | -ms-border-radius: 100px; 150 | border-right: 3px solid #1453F2 !important; 151 | border-top: 3px solid rgba(19, 19, 19, 0.1) !important; 152 | height: 50px; 153 | left: 50%; 154 | margin: -20px 0 0 -20px; 155 | position: absolute; 156 | text-align: center; 157 | top: 50%; 158 | width: 50px; 159 | -webkit-transform: translate(-50%, -50%); 160 | -ms-transform: translate(-50%, -50%); 161 | transform: translate(-50%, -50%); 162 | } 163 | 164 | .colored-border { 165 | border-color: $light; 166 | } 167 | 168 | .fa-spin { 169 | -webkit-animation: fa-spin 1s infinite linear; 170 | animation: fa-spin 1s infinite linear; 171 | } 172 | 173 | @-webkit-keyframes fa-spin { 174 | 0% { 175 | -webkit-transform: rotate(0deg); 176 | transform: rotate(0deg); 177 | } 178 | 179 | 100% { 180 | -webkit-transform: rotate(359deg); 181 | transform: rotate(359deg); 182 | } 183 | } 184 | 185 | @keyframes fa-spin { 186 | 0% { 187 | -webkit-transform: rotate(0deg); 188 | transform: rotate(0deg); 189 | } 190 | 191 | 100% { 192 | -webkit-transform: rotate(359deg); 193 | transform: rotate(359deg); 194 | } 195 | } 196 | -------------------------------------------------------------------------------- /source/scss/templates/_navigation.scss: -------------------------------------------------------------------------------- 1 | /*------------------- 2 | MENU 3 | ----------------------*/ 4 | .navbar-toggler-icon { 5 | display: inline-block; 6 | width: 1.5em; 7 | height: 1.5em; 8 | content: ""; 9 | vertical-align: middle; 10 | background: no-repeat 50%; 11 | background-size: 100% 100% 12 | } 13 | 14 | .navbar-dark .navbar-toggler { 15 | color: #fff; 16 | border-color: rgba(255,255,255,.1); 17 | padding: 10px 12px; 18 | &:focus { 19 | outline: 0; 20 | } 21 | } 22 | 23 | .main-nav { 24 | margin-bottom: -45px; 25 | z-index: 999; 26 | } 27 | 28 | .navbar-nav .nav-link { 29 | padding-right: 1rem !important; 30 | padding-left: 1rem !important; 31 | transition: .3s; 32 | } 33 | 34 | .navbar-dark .navbar-nav .nav-link { 35 | color: $light; 36 | font-weight: 700; 37 | letter-spacing: .5px; 38 | text-transform: uppercase; 39 | } 40 | 41 | .rounded-radius { 42 | border-radius: 5px; 43 | } 44 | 45 | .navbar { 46 | position: relative; 47 | padding: 1rem 1rem; 48 | 49 | 50 | &:before { 51 | position: absolute; 52 | z-index: -1; 53 | top: 0; 54 | right: 0; 55 | bottom: 0; 56 | left: 0; 57 | content: ""; 58 | transition: opacity .15s linear; 59 | opacity: 0; 60 | border-bottom: 1px solid rgba(0, 0, 0, .1); 61 | background-color: $light; 62 | 63 | } 64 | } 65 | 66 | .dropdown-toggle::after { 67 | margin-left: .255em; 68 | vertical-align: 1px; 69 | content: "\f078"; 70 | border: 0; 71 | font-family: "Font Awesome 5 Free"; 72 | font-size: 12px; 73 | } 74 | 75 | .fixed-top { 76 | position: fixed; 77 | z-index: 1030; 78 | right: 0; 79 | left: 0; 80 | } 81 | 82 | 83 | .navbar-dark { 84 | color: $light; 85 | } 86 | 87 | 88 | .navbar-light { 89 | color: $black; 90 | 91 | &:before { 92 | opacity: 1; 93 | } 94 | } 95 | 96 | 97 | .navbar .nav-item-divider { 98 | display: none; 99 | 100 | .nav-link { 101 | opacity: .25; 102 | } 103 | } 104 | 105 | .header-bar.fixed-header .main-navigation { 106 | position: fixed; 107 | left: 0; 108 | top: 0; 109 | width: 100%; 110 | background: rgba(20, 27, 40, .90); 111 | border-color: transparent; 112 | 113 | } 114 | 115 | 116 | /*------------------- 117 | DROPDOWN MENU 118 | ----------------------*/ 119 | .has-dropdown { 120 | .dropdown-menu { 121 | border: none; 122 | box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.08); 123 | padding: 0; 124 | margin: 0; 125 | 126 | @include desktop { 127 | text-align: center; 128 | float: left !important; 129 | width: 100%; 130 | margin: 0; 131 | } 132 | 133 | a { 134 | font-weight: normal; 135 | color: #808080; 136 | padding: 10px 20px; 137 | @include transition (all, 0.3s, ease); 138 | border-bottom: 1px solid #eee; 139 | border-radius: 4px; 140 | 141 | &:focus, 142 | &:hover { 143 | background: $primary-color; 144 | color: $light; 145 | } 146 | } 147 | } 148 | } 149 | 150 | .dropleft .dropdown-menu, 151 | .dropright .dropdown-menu { 152 | margin: 0; 153 | } 154 | 155 | .dropleft .dropdown-toggle::before, 156 | .dropright .dropdown-toggle::after { 157 | font-weight: bold; 158 | font-family: "Font Awesome 5 Free"; 159 | border: 0; 160 | font-size: 10px; 161 | vertical-align: 1px; 162 | } 163 | 164 | .dropleft .dropdown-toggle::before { 165 | content: "\f053"; 166 | margin-right: 7px; 167 | } 168 | 169 | .dropright .dropdown-toggle::after { 170 | content: "\f054"; 171 | margin-left: 7px; 172 | } 173 | 174 | .dropdown-item { 175 | padding: .6rem 1.4rem; 176 | text-transform: uppercase; 177 | font-size: 12px; 178 | font-weight: 700; 179 | } 180 | 181 | .dropdown-submenu:hover>.dropdown-item, 182 | .dropdown-item:hover { 183 | background: $primary-color; 184 | color: $light !important; 185 | } 186 | 187 | .dropdown-item.active { 188 | text-decoration: underline; 189 | background-color: transparent; 190 | color: inherit; 191 | } 192 | .dropdown-submenu.active>.dropdown-toggle { 193 | text-decoration: underline; 194 | color: inherit; 195 | } 196 | 197 | ul.dropdown-menu li { 198 | padding-left: 0px !important; 199 | } 200 | 201 | @media (min-width:992px) { 202 | .dropdown-menu { 203 | transition: all .2s ease-in, visibility 0s linear .2s, transform .2s linear; 204 | display: block; 205 | visibility: hidden; 206 | opacity: 0; 207 | min-width: 200px; 208 | transform: translateY(15px); 209 | } 210 | 211 | .dropdown:hover>.dropdown-menu { 212 | visibility: visible; 213 | transition: all .35s ease 0s; 214 | opacity: 1; 215 | transform: translateY(0); 216 | } 217 | } -------------------------------------------------------------------------------- /source/scss/templates/_page-banner.scss: -------------------------------------------------------------------------------- 1 | 2 | 3 | /*-------------------------- 4 | PAGE BANNER 5 | --------------------------*/ 6 | 7 | .page-banner-area{ 8 | padding: 180px 0px; 9 | } 10 | .page-contact{ 11 | position: relative; 12 | padding: 180px 0px; 13 | background: url("../images/banner/p-6.jpg")fixed 50% 50% no-repeat; 14 | -webkit-background-size: cover; 15 | background-size:cover ; 16 | } 17 | .page-service{ 18 | position: relative; 19 | padding: 180px 0px; 20 | background: url("../images/banner/service.jpg")fixed 50% 50% no-repeat; 21 | -webkit-background-size: cover; 22 | background-size:cover ; 23 | } 24 | 25 | .page-about{ 26 | position: relative; 27 | padding: 180px 0px; 28 | background: url("../images/banner/about.jpg")fixed 50% 50% no-repeat; 29 | -webkit-background-size: cover; 30 | background-size:cover ; 31 | } 32 | 33 | .page-pricing{ 34 | position: relative; 35 | padding: 180px 0px; 36 | background: url("../images/banner/img2.jpg")fixed 50% 50% no-repeat; 37 | -webkit-background-size: cover; 38 | background-size:cover ; 39 | } 40 | 41 | .page-project{ 42 | position: relative; 43 | padding: 180px 0px; 44 | background: url("../images/banner/p-4.jpg")fixed 50% 50% no-repeat; 45 | -webkit-background-size: cover; 46 | background-size:cover ; 47 | } 48 | 49 | 50 | .page-banner-content h1{ 51 | color: $light; 52 | } 53 | .page-banner-content p{ 54 | color: $border-color; 55 | } 56 | 57 | .form-control{ 58 | border-radius: 0px; 59 | height: 45px; 60 | } 61 | -------------------------------------------------------------------------------- /source/scss/templates/_portfolio.scss: -------------------------------------------------------------------------------- 1 | 2 | /*---------------------- 3 | PRoject 4 | -----------------------*/ 5 | #projects-wrap { 6 | position: relative; 7 | background: url("../images/bg/banner_bg.jpg")no-repeat; 8 | -webkit-background-size: cover; 9 | background-size: cover; 10 | 11 | p.lead{ 12 | color: #a9a9a9!important; 13 | } 14 | } 15 | 16 | .overlay { 17 | position: absolute; 18 | left: 0; 19 | top: 0; 20 | width: 100%; 21 | height: 100%; 22 | background: rgba(0, 0, 0, .92); 23 | } 24 | 25 | .overlay.feature-overlay { 26 | background-image: linear-gradient(30deg, rgba(121, 110, 255, 0.95) 0%, rgba(33, 200, 122, 0.95) 100%); 27 | opacity: .9; 28 | } 29 | 30 | #projects { 31 | margin-top: -60px; 32 | } 33 | 34 | .single-project img { 35 | border-radius: 10px; 36 | } 37 | 38 | .project-content { 39 | text-align: center; 40 | padding: 40px 20px; 41 | position: relative; 42 | .btn { 43 | padding: .7rem 1.7rem; 44 | border-radius: 25px; 45 | } 46 | p { 47 | margin-top: 20px; 48 | } 49 | h4 { 50 | text-transform: capitalize; 51 | } 52 | } 53 | 54 | .project-content-block { 55 | padding: 70px 40px; 56 | margin-left: -120px; 57 | background: #F4F7FC; 58 | position: absolute; 59 | bottom: -70px; 60 | border: 15px solid $light; 61 | -webkit-box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08); 62 | box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08); 63 | h4 { 64 | color: $primary-color; 65 | } 66 | p { 67 | margin-top: 25px; 68 | } 69 | 70 | } 71 | 72 | 73 | /*------------------------- 74 | PORTFOLIO-2 75 | ---------------------------*/ 76 | 77 | .single-work { 78 | -webkit-transition: all 300ms ease-in-out; 79 | -o-transition: all 300ms ease-in-out; 80 | transition: all 300ms ease-in-out; 81 | } 82 | 83 | 84 | 85 | 86 | .overlay-content-block{ 87 | position: absolute; 88 | content: ""; 89 | bottom: 20px; 90 | width: 100%; 91 | left: 30px; 92 | padding: 30px 20px; 93 | background: $light; 94 | opacity: 0; 95 | visibility: hidden; 96 | -webkit-transition: all 300ms ease-in-out; 97 | -o-transition: all 300ms ease-in-out; 98 | transition: all 300ms ease-in-out; 99 | border-radius: 5px 0px 0px 5px; 100 | 101 | a{ 102 | width: 50px; 103 | height: 50px; 104 | display: inline-block; 105 | text-align: center; 106 | padding-top: 12px; 107 | border-radius: 100%; 108 | position: absolute; 109 | left: 30px; 110 | top: -23px; 111 | background: $primary-color; 112 | color: $light; 113 | } 114 | 115 | h4{ 116 | margin-bottom: 0px; 117 | margin-top: 10px; 118 | } 119 | } 120 | 121 | .work-block{ 122 | position: relative; 123 | border: 5px solid $light; 124 | 125 | img{ 126 | width: 100%; 127 | border-radius: 5px; 128 | } 129 | 130 | &:hover .overlay-content-block{ 131 | opacity: 1; 132 | visibility: visible; 133 | } 134 | } 135 | 136 | 137 | 138 | 139 | /* ============================== 140 | SINGEL PROJECTS 141 | =============================*/ 142 | 143 | .project-details-info{ 144 | margin: 40px 0px; 145 | } 146 | 147 | .info-block-2{ 148 | float: left; 149 | margin-right: 65px; 150 | margin-bottom: 40px; 151 | } 152 | 153 | .project-info ul { 154 | margin-top: 40px; 155 | li{ 156 | margin-bottom: 30px; 157 | padding-right: 20px; 158 | } 159 | } 160 | 161 | .project-lg-images img { 162 | width: 100%; 163 | } 164 | -------------------------------------------------------------------------------- /source/scss/templates/_pricing.scss: -------------------------------------------------------------------------------- 1 | 2 | 3 | /*---------------------- 4 | PRICING 5 | -----------------------*/ 6 | 7 | .price-block { 8 | margin: 20px 0px 30px; 9 | h2 { 10 | font-size: 80px; 11 | font-weight: 700; 12 | position: relative; 13 | display: inline-block; 14 | 15 | small { 16 | position: absolute; 17 | top: 20px; 18 | font-size: 16px; 19 | left: -9px; 20 | } 21 | } 22 | 23 | h6 { 24 | font-size: 14px; 25 | border-top: 1px solid $border-color; 26 | border-bottom: 1px solid $border-color; 27 | padding: 7px; 28 | text-transform: capitalize; 29 | width: 50%; 30 | margin: 10px auto; 31 | 32 | } 33 | } 34 | 35 | 36 | 37 | .price-features { 38 | margin: 30px 0px 50px; 39 | li { 40 | font-size: 16px; 41 | padding: 5px 0px; 42 | position: relative; 43 | padding-left: 30px; 44 | 45 | &:before{ 46 | position: absolute; 47 | content:"\f00c"; 48 | font-family: "Font Awesome 5 Free"; 49 | left: 0px; 50 | top: 5px; 51 | color: $primary-color; 52 | font-weight: 900; 53 | } 54 | } 55 | } 56 | 57 | 58 | 59 | .pricing-block .price-features li{ 60 | padding-left: 0px; 61 | &:before{ 62 | display: none; 63 | } 64 | } 65 | 66 | 67 | 68 | /*-------------------------- 69 | PRICING-2 70 | ---------------------------*/ 71 | .pricing-box{ 72 | border: 1px solid $border-color; 73 | padding: 60px; 74 | -webkit-transition: all 300ms ease-in-out; 75 | -o-transition:all 300ms ease-in-out ; 76 | transition:all 300ms ease-in-out ; 77 | 78 | .price-block h2 span{ 79 | font-size: 12px; 80 | font-weight: normal; 81 | text-transform: capitalize; 82 | } 83 | &:hover{ 84 | background: rgb(29, 28, 28); 85 | border-color: rgb(29, 28, 28); 86 | } 87 | 88 | &:hover .price-features li{ 89 | color: $border-color; 90 | } 91 | &:hover .price-block h2{ 92 | color: $light; 93 | } 94 | &:hover h3{ 95 | color: $light; 96 | } 97 | &:hover .btn{ 98 | background: $light!important; 99 | color: #000!important; 100 | } 101 | 102 | } 103 | 104 | -------------------------------------------------------------------------------- /source/scss/templates/_process.scss: -------------------------------------------------------------------------------- 1 | 2 | 3 | /*---------------------- 4 | PROCESS 5 | -----------------------*/ 6 | .process-block { 7 | text-align: center; 8 | img { 9 | border-radius: 5px; 10 | margin-bottom: 30px; 11 | } 12 | h3 { 13 | margin-bottom:15px; 14 | } 15 | 16 | } 17 | -------------------------------------------------------------------------------- /source/scss/templates/_service.scss: -------------------------------------------------------------------------------- 1 | /*---------------------- 2 | SERVICE 3 | -----------------------*/ 4 | h5.subtitle { 5 | color: $primary-color; 6 | margin-bottom: 10px; 7 | font-weight: 300; 8 | } 9 | 10 | .service-heading { 11 | margin-bottom: 50px; 12 | } 13 | 14 | .service-images { 15 | margin-bottom: -200px; 16 | border: 10px solid $light; 17 | z-index: 9999; 18 | } 19 | 20 | .service-content { 21 | padding-top: 60px; 22 | padding-left: 15px; 23 | 24 | h1 { 25 | margin-bottom: 20px; 26 | margin-top: 15px; 27 | } 28 | } 29 | 30 | .service-icon { 31 | margin-right: 20px; 32 | color: $light; 33 | font-size: 25px; 34 | width: 50px; 35 | height: 50px; 36 | background: $primary-color; 37 | text-align: center; 38 | border-radius: 50%; 39 | padding-top: 5px; 40 | } 41 | 42 | .service-block { 43 | margin-bottom: 50px; 44 | } 45 | 46 | 47 | .service-inner-content h4 { 48 | text-transform: uppercase; 49 | } 50 | 51 | 52 | /*---------------------- 53 | WEB SERVICES 54 | -----------------------*/ 55 | #services-2 { 56 | position: relative; 57 | background: url("../images/bg/6.jpg")no-repeat fixed 50% 50%; 58 | -webkit-background-size: cover; 59 | background-size: cover; 60 | 61 | &:before { 62 | position: absolute; 63 | content: ""; 64 | left: 0px; 65 | top: 0px; 66 | width: 100%; 67 | height: 100%; 68 | background-image: linear-gradient(30deg, rgba(121, 110, 255, 0.95) 0%, rgba(33, 200, 122, 0.95) 100%); 69 | } 70 | } 71 | 72 | 73 | .web-service-block { 74 | text-align: center; 75 | padding: 35px 25px; 76 | transition: .3s; 77 | border-radius: 10px; 78 | border: 1px solid rgba(255, 255, 255, 0.05); 79 | margin-bottom: 10px; 80 | 81 | i { 82 | font-size: 70px; 83 | margin-bottom: 30px; 84 | display: block; 85 | color: $light; 86 | } 87 | 88 | h3 { 89 | color: $light; 90 | transition: 0.3s; 91 | } 92 | 93 | p { 94 | color: $border-color; 95 | margin-top: 15px; 96 | transition: 0.3s; 97 | } 98 | 99 | &:hover { 100 | background: $light; 101 | border-color: transparent; 102 | 103 | i { 104 | color: $primary-color; 105 | } 106 | 107 | h3 { 108 | color: #111; 109 | } 110 | 111 | p { 112 | color: #111; 113 | } 114 | } 115 | } 116 | 117 | .service-img { 118 | margin-bottom: -200px; 119 | border: 10px solid $light; 120 | z-index: 9999; 121 | 122 | } -------------------------------------------------------------------------------- /source/scss/templates/_slider.scss: -------------------------------------------------------------------------------- 1 | 2 | /*---------------------- 3 | BANNER STYLE 4 | -----------------------*/ 5 | 6 | .py-7 { 7 | padding: 7.5rem 0; 8 | } 9 | 10 | .py-8 { 11 | padding: 8.5rem 0; 12 | } 13 | 14 | 15 | .main-banner { 16 | h5{ 17 | margin-bottom: 20px; 18 | } 19 | h1.display-4{ 20 | line-height: 65px; 21 | } 22 | } 23 | 24 | 25 | .main-banner p.lead, 26 | .banner-content p.lead{ 27 | margin-bottom: 2.5rem!important; 28 | } 29 | 30 | 31 | 32 | /*------------------------- 33 | HOME -2 34 | -----------------------------*/ 35 | #banner{ 36 | position: relative; 37 | background: url("/images/bg/banner_bg.jpg")no-repeat; 38 | -webkit-background-size: cover; 39 | background-size: cover; 40 | } 41 | 42 | 43 | .banner-content { 44 | padding: 150px 0px; 45 | padding-right: 30px; 46 | p{ 47 | color: $border-color; 48 | padding-right: 80px; 49 | margin-bottom: 30px !important; 50 | } 51 | .display-4{ 52 | color: $light; 53 | font-weight: 600; 54 | } 55 | } 56 | 57 | 58 | #banner .overlay{ 59 | opacity: .7; 60 | } 61 | 62 | .banner-contact-form{ 63 | padding:45px 40px; 64 | margin-top: 30px; 65 | 66 | .form-control{ 67 | border-radius: 0px; 68 | height: 45px; 69 | } 70 | 71 | textarea.form-control{ 72 | height: auto; 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /source/scss/templates/_testimonial.scss: -------------------------------------------------------------------------------- 1 | /*------------------------------------ 2 | SECTION TESTIMONIAL 3 | -------------------------------------*/ 4 | #section-testimonial{ 5 | padding-bottom: 120px; 6 | background: #F9FAFF; 7 | } 8 | .mb25{ 9 | margin-bottom: 25px; 10 | } 11 | .test-inner{ 12 | position: relative; 13 | padding: 30px; 14 | background: $light; 15 | border-top-right-radius: 35px; 16 | margin-bottom: 25px; 17 | -webkit-transition: all .7s ease; 18 | -o-transition:all .7s ease ; 19 | transition:all .7s ease ; 20 | 21 | &:hover{ 22 | -webkit-box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08); 23 | box-shadow:0 7px 22px rgba(0, 0, 0, 0.08) ; 24 | } 25 | 26 | i{ 27 | font-size: 60px; 28 | opacity: .09; 29 | position: absolute; 30 | right: 40px; 31 | bottom: 20px; 32 | } 33 | } 34 | 35 | 36 | .test-author-thumb{ 37 | margin-bottom: 15px; 38 | img{ 39 | width: 90px; 40 | height: 90px; 41 | border-radius: 100%; 42 | border: 1px dotted #ddd; 43 | padding: 5px; 44 | } 45 | } 46 | 47 | .test-author-info{ 48 | margin-left: 20px; 49 | margin-top: 20px; 50 | } 51 | 52 | 53 | 54 | 55 | /*---------------------- 56 | TETSIMONIAL-2 57 | -------------------------*/ 58 | 59 | .testimonial .content img{ 60 | margin: 0 auto 30px; 61 | border: 3px solid $light; 62 | } 63 | 64 | .img-md{ 65 | width: 120px; 66 | height: 120px; 67 | border-radius: 100%; 68 | } -------------------------------------------------------------------------------- /source/service.html: -------------------------------------------------------------------------------- 1 | @@include('header.htm') 2 | @@include('blocks/nav-3.htm') 3 | @@include('blocks/page-service.htm', { 4 | "title": "Web & Cloud services", 5 | "description": "We'd love to talk about how we can help you." 6 | }) 7 | 8 | 9 | @@include('blocks/service-2.htm') 10 | 11 | @@include('blocks/service.htm') 12 | 13 | @@include('blocks/process.htm') 14 | 15 | @@include('blocks/footer.htm') 16 | 17 | @@include('footer.htm') 18 | -------------------------------------------------------------------------------- /theme/images/banner-img-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/banner-img-5.png -------------------------------------------------------------------------------- /theme/images/banner/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/banner/about.jpg -------------------------------------------------------------------------------- /theme/images/banner/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/banner/banner-2.jpg -------------------------------------------------------------------------------- /theme/images/banner/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/banner/banner.jpg -------------------------------------------------------------------------------- /theme/images/banner/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/banner/img2.jpg -------------------------------------------------------------------------------- /theme/images/banner/p-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/banner/p-1.jpg -------------------------------------------------------------------------------- /theme/images/banner/p-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/banner/p-4.jpg -------------------------------------------------------------------------------- /theme/images/banner/p-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/banner/p-6.jpg -------------------------------------------------------------------------------- /theme/images/banner/service.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/banner/service.jpg -------------------------------------------------------------------------------- /theme/images/bg/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/bg/10.jpg -------------------------------------------------------------------------------- /theme/images/bg/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/bg/6.jpg -------------------------------------------------------------------------------- /theme/images/bg/banner_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/bg/banner_bg.jpg -------------------------------------------------------------------------------- /theme/images/bg/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/bg/bg2.png -------------------------------------------------------------------------------- /theme/images/blog-lg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/blog-lg.jpg -------------------------------------------------------------------------------- /theme/images/blog/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/blog/blog-1.jpg -------------------------------------------------------------------------------- /theme/images/blog/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/blog/blog-2.jpg -------------------------------------------------------------------------------- /theme/images/blog/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/blog/blog-3.jpg -------------------------------------------------------------------------------- /theme/images/client/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/client/img-1.jpg -------------------------------------------------------------------------------- /theme/images/client/img-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/client/img-2.jpg -------------------------------------------------------------------------------- /theme/images/client/img-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/client/img-3.jpg -------------------------------------------------------------------------------- /theme/images/client/test-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/client/test-1.jpg -------------------------------------------------------------------------------- /theme/images/client/test-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/client/test-2.jpg -------------------------------------------------------------------------------- /theme/images/client/test-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/client/test-3.jpg -------------------------------------------------------------------------------- /theme/images/client/test-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/client/test-4.jpg -------------------------------------------------------------------------------- /theme/images/client/test-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/client/test-5.jpg -------------------------------------------------------------------------------- /theme/images/client/test-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/client/test-6.jpg -------------------------------------------------------------------------------- /theme/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/favicon.png -------------------------------------------------------------------------------- /theme/images/ico/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/ico/apple-icon-180x180.png -------------------------------------------------------------------------------- /theme/images/icon/if_envelope-stats_1291753.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/images/icon/if_glass-stats_1291748.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/images/icon/if_price-tag_1291777.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/images/icon/if_target_1291767.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /theme/images/process/process-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/process/process-1.jpg -------------------------------------------------------------------------------- /theme/images/process/process-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/process/process-2.jpg -------------------------------------------------------------------------------- /theme/images/process/process-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/process/process-3.jpg -------------------------------------------------------------------------------- /theme/images/projects/2-min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/projects/2-min.jpg -------------------------------------------------------------------------------- /theme/images/projects/p-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/projects/p-1.jpg -------------------------------------------------------------------------------- /theme/images/projects/p-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/projects/p-2.jpg -------------------------------------------------------------------------------- /theme/images/projects/p-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/projects/p-3.jpg -------------------------------------------------------------------------------- /theme/images/projects/p-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/projects/p-4.jpg -------------------------------------------------------------------------------- /theme/images/projects/p-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/projects/p-5.jpg -------------------------------------------------------------------------------- /theme/images/projects/p-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/projects/p-6.jpg -------------------------------------------------------------------------------- /theme/images/service/47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/service/47.jpg -------------------------------------------------------------------------------- /theme/images/service/55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/service/55.jpg -------------------------------------------------------------------------------- /theme/images/service/service-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/service/service-1.jpg -------------------------------------------------------------------------------- /theme/images/service/service-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/service/service-2.jpg -------------------------------------------------------------------------------- /theme/images/service/service-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/service/service-3.jpg -------------------------------------------------------------------------------- /theme/images/work/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/work/10.jpg -------------------------------------------------------------------------------- /theme/images/work/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/work/11.jpg -------------------------------------------------------------------------------- /theme/images/work/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/work/12.jpg -------------------------------------------------------------------------------- /theme/images/work/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/work/13.jpg -------------------------------------------------------------------------------- /theme/images/work/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/work/14.jpg -------------------------------------------------------------------------------- /theme/images/work/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/images/work/15.jpg -------------------------------------------------------------------------------- /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 | // PRELOADER 12 | $(window).on('load', function () { 13 | $('#page-loader').fadeOut('slow', function () { 14 | $(this).remove(); 15 | }); 16 | }); 17 | 18 | // navbarDropdown 19 | if ($(window).width() < 992) { 20 | $('.has-dropdown .dropdown-toggle').on('click', function () { 21 | $(this).siblings('.dropdown-menu').animate({ 22 | height: 'toggle' 23 | }, 300); 24 | }); 25 | } 26 | 27 | 28 | // SCROLL TO TOP 29 | $(window).on('scroll', function () { 30 | if ($(window).scrollTop() > 70) { 31 | $('.scroll-to-top').addClass('reveal'); 32 | } else { 33 | $('.scroll-to-top').removeClass('reveal'); 34 | } 35 | }); 36 | 37 | 38 | // Fixed header 39 | $(window).on('scroll', function () { 40 | if ($(window).scrollTop() > 70) { 41 | $('.site-navigation,.trans-navigation').addClass('header-white'); 42 | } else { 43 | $('.site-navigation,.trans-navigation').removeClass('header-white'); 44 | } 45 | }); 46 | 47 | 48 | // scroll-to-top 49 | if ($('#scroll-to-top').length) { 50 | $('#scroll-to-top').on('click', function () { 51 | $('body,html').animate({ 52 | scrollTop: 0 53 | }, 600); 54 | return false; 55 | }); 56 | } 57 | 58 | 59 | // Closes responsive menu when a scroll trigger link is clicked 60 | $('.js-scroll-trigger').on('click', function (event) { 61 | $('.navbar-collapse').collapse('hide'); 62 | }); 63 | 64 | })(jQuery); 65 | -------------------------------------------------------------------------------- /theme/plugins/fontawesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fontawesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /theme/plugins/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /theme/plugins/fontawesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fontawesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /theme/plugins/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /theme/plugins/fontawesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fontawesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /theme/plugins/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /theme/plugins/fontawesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fontawesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /theme/plugins/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /theme/plugins/fontawesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fontawesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /theme/plugins/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /theme/plugins/fontawesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fontawesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /theme/plugins/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /theme/plugins/fonts/Pe-icon-7-stroke.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fonts/Pe-icon-7-stroke.eot -------------------------------------------------------------------------------- /theme/plugins/fonts/Pe-icon-7-stroke.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fonts/Pe-icon-7-stroke.ttf -------------------------------------------------------------------------------- /theme/plugins/fonts/Pe-icon-7-stroke.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/fonts/Pe-icon-7-stroke.woff -------------------------------------------------------------------------------- /theme/plugins/google-map/gmap.js: -------------------------------------------------------------------------------- 1 | window.marker = null; 2 | 3 | function initialize() { 4 | var map; 5 | 6 | var nottingham = new google.maps.LatLng(51.507351, -0.127758); 7 | 8 | var style = [{ 9 | "featureType": "road.highway", 10 | "elementType": "geometry", 11 | "stylers": [{ 12 | "saturation": -100 13 | }, 14 | { 15 | "lightness": -8 16 | }, 17 | { 18 | "gamma": 1.18 19 | } 20 | ] 21 | }, { 22 | "featureType": "road.arterial", 23 | "elementType": "geometry", 24 | "stylers": [{ 25 | "saturation": -100 26 | }, 27 | { 28 | "gamma": 1 29 | }, 30 | { 31 | "lightness": -24 32 | } 33 | ] 34 | }, { 35 | "featureType": "poi", 36 | "elementType": "geometry", 37 | "stylers": [{ 38 | "saturation": -100 39 | }] 40 | }, { 41 | "featureType": "administrative", 42 | "stylers": [{ 43 | "saturation": -100 44 | }] 45 | }, { 46 | "featureType": "transit", 47 | "stylers": [{ 48 | "saturation": -100 49 | }] 50 | }, { 51 | "featureType": "water", 52 | "elementType": "geometry.fill", 53 | "stylers": [{ 54 | "saturation": -100 55 | }] 56 | }, { 57 | "featureType": "road", 58 | "stylers": [{ 59 | "saturation": -100 60 | }] 61 | }, { 62 | "featureType": "administrative", 63 | "stylers": [{ 64 | "saturation": -100 65 | }] 66 | }, { 67 | "featureType": "landscape", 68 | "stylers": [{ 69 | "saturation": -100 70 | }] 71 | }, { 72 | "featureType": "poi", 73 | "stylers": [{ 74 | "saturation": -100 75 | }] 76 | }, {}]; 77 | 78 | var mapOptions = { 79 | // SET THE CENTER 80 | center: nottingham, 81 | 82 | // SET THE MAP STYLE & ZOOM LEVEL 83 | mapTypeId: google.maps.MapTypeId.ROADMAP, 84 | 85 | // SET THE BACKGROUND COLOUR 86 | backgroundColor: "#000", 87 | 88 | // REMOVE ALL THE CONTROLS EXCEPT ZOOM 89 | zoom: 17, 90 | panControl: false, 91 | zoomControl: true, 92 | mapTypeControl: false, 93 | scaleControl: false, 94 | streetViewControl: false, 95 | overviewMapControl: false, 96 | zoomControlOptions: { 97 | style: google.maps.ZoomControlStyle.LARGE 98 | } 99 | 100 | } 101 | map = new google.maps.Map(document.getElementById('map'), mapOptions); 102 | // SET THE MAP TYPE 103 | var mapType = new google.maps.StyledMapType(style, { 104 | name: "Grayscale" 105 | }); 106 | map.mapTypes.set('grey', mapType); 107 | map.setMapTypeId('grey'); 108 | 109 | //CREATE A CUSTOM PIN ICON 110 | var marker_image = 'plugins/google-map/images/marker.png'; 111 | var pinIcon = new google.maps.MarkerImage(marker_image, null, null, null, new google.maps.Size(74, 73)); 112 | 113 | marker = new google.maps.Marker({ 114 | position: nottingham, 115 | map: map, 116 | icon: pinIcon, 117 | title: 'eventre' 118 | }); 119 | } 120 | 121 | if ($('#map').length) { 122 | google.maps.event.addDomListener(window, 'load', initialize); 123 | } 124 | -------------------------------------------------------------------------------- /theme/plugins/google-map/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/google-map/images/marker.png -------------------------------------------------------------------------------- /theme/plugins/slick-carousel/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/slick-carousel/slick/ajax-loader.gif -------------------------------------------------------------------------------- /theme/plugins/slick-carousel/slick/config.rb: -------------------------------------------------------------------------------- 1 | css_dir = "." 2 | sass_dir = "." 3 | images_dir = "." 4 | fonts_dir = "fonts" 5 | relative_assets = true 6 | 7 | output_style = :compact 8 | line_comments = false 9 | 10 | preferred_syntax = :scss -------------------------------------------------------------------------------- /theme/plugins/slick-carousel/slick/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/slick-carousel/slick/fonts/slick.eot -------------------------------------------------------------------------------- /theme/plugins/slick-carousel/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-carousel/slick/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/slick-carousel/slick/fonts/slick.ttf -------------------------------------------------------------------------------- /theme/plugins/slick-carousel/slick/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/slick-carousel/slick/fonts/slick.woff -------------------------------------------------------------------------------- /theme/plugins/slick-carousel/slick/slick-theme.css: -------------------------------------------------------------------------------- 1 | @charset 'UTF-8'; 2 | /* Slider */ 3 | .slick-loading .slick-list 4 | { 5 | background: #fff url('./ajax-loader.gif') center center no-repeat; 6 | } 7 | 8 | /* Icons */ 9 | @font-face 10 | { 11 | font-family: 'slick'; 12 | font-weight: normal; 13 | font-style: normal; 14 | 15 | src: url('./fonts/slick.eot'); 16 | src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg'); 17 | } 18 | /* Arrows */ 19 | .slick-prev, 20 | .slick-next 21 | { 22 | font-size: 0; 23 | line-height: 0; 24 | 25 | position: absolute; 26 | top: 50%; 27 | 28 | display: block; 29 | 30 | width: 20px; 31 | height: 20px; 32 | padding: 0; 33 | -webkit-transform: translate(0, -50%); 34 | -ms-transform: translate(0, -50%); 35 | transform: translate(0, -50%); 36 | 37 | cursor: pointer; 38 | 39 | color: transparent; 40 | border: none; 41 | outline: none; 42 | background: transparent; 43 | } 44 | .slick-prev:hover, 45 | .slick-prev:focus, 46 | .slick-next:hover, 47 | .slick-next:focus 48 | { 49 | color: transparent; 50 | outline: none; 51 | background: transparent; 52 | } 53 | .slick-prev:hover:before, 54 | .slick-prev:focus:before, 55 | .slick-next:hover:before, 56 | .slick-next:focus:before 57 | { 58 | opacity: 1; 59 | } 60 | .slick-prev.slick-disabled:before, 61 | .slick-next.slick-disabled:before 62 | { 63 | opacity: .25; 64 | } 65 | 66 | .slick-prev:before, 67 | .slick-next:before 68 | { 69 | font-family: 'slick'; 70 | font-size: 20px; 71 | line-height: 1; 72 | 73 | opacity: .75; 74 | color: white; 75 | 76 | -webkit-font-smoothing: antialiased; 77 | -moz-osx-font-smoothing: grayscale; 78 | } 79 | 80 | .slick-prev 81 | { 82 | left: -25px; 83 | } 84 | [dir='rtl'] .slick-prev 85 | { 86 | right: -25px; 87 | left: auto; 88 | } 89 | .slick-prev:before 90 | { 91 | content: '←'; 92 | } 93 | [dir='rtl'] .slick-prev:before 94 | { 95 | content: '→'; 96 | } 97 | 98 | .slick-next 99 | { 100 | right: -25px; 101 | } 102 | [dir='rtl'] .slick-next 103 | { 104 | right: auto; 105 | left: -25px; 106 | } 107 | .slick-next:before 108 | { 109 | content: '→'; 110 | } 111 | [dir='rtl'] .slick-next:before 112 | { 113 | content: '←'; 114 | } 115 | 116 | /* Dots */ 117 | .slick-dotted.slick-slider 118 | { 119 | margin-bottom: 30px; 120 | } 121 | 122 | .slick-dots 123 | { 124 | position: absolute; 125 | bottom: -25px; 126 | 127 | display: block; 128 | 129 | width: 100%; 130 | padding: 0; 131 | margin: 0; 132 | 133 | list-style: none; 134 | 135 | text-align: center; 136 | } 137 | .slick-dots li 138 | { 139 | position: relative; 140 | 141 | display: inline-block; 142 | 143 | width: 20px; 144 | height: 20px; 145 | margin: 0 5px; 146 | padding: 0; 147 | 148 | cursor: pointer; 149 | } 150 | .slick-dots li button 151 | { 152 | font-size: 0; 153 | line-height: 0; 154 | 155 | display: block; 156 | 157 | width: 20px; 158 | height: 20px; 159 | padding: 5px; 160 | 161 | cursor: pointer; 162 | 163 | color: transparent; 164 | border: 0; 165 | outline: none; 166 | background: transparent; 167 | } 168 | .slick-dots li button:hover, 169 | .slick-dots li button:focus 170 | { 171 | outline: none; 172 | } 173 | .slick-dots li button:hover:before, 174 | .slick-dots li button:focus:before 175 | { 176 | opacity: 1; 177 | } 178 | .slick-dots li button:before 179 | { 180 | font-family: 'slick'; 181 | font-size: 6px; 182 | line-height: 20px; 183 | 184 | position: absolute; 185 | top: 0; 186 | left: 0; 187 | 188 | width: 20px; 189 | height: 20px; 190 | 191 | content: '•'; 192 | text-align: center; 193 | 194 | opacity: .25; 195 | color: black; 196 | 197 | -webkit-font-smoothing: antialiased; 198 | -moz-osx-font-smoothing: grayscale; 199 | } 200 | .slick-dots li.slick-active button:before 201 | { 202 | opacity: .75; 203 | color: black; 204 | } 205 | -------------------------------------------------------------------------------- /theme/plugins/slick-carousel/slick/slick.css: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | .slick-slider 3 | { 4 | position: relative; 5 | 6 | display: block; 7 | box-sizing: border-box; 8 | 9 | -webkit-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | 14 | -webkit-touch-callout: none; 15 | -khtml-user-select: none; 16 | -ms-touch-action: pan-y; 17 | touch-action: pan-y; 18 | -webkit-tap-highlight-color: transparent; 19 | } 20 | 21 | .slick-list 22 | { 23 | position: relative; 24 | 25 | display: block; 26 | overflow: hidden; 27 | 28 | margin: 0; 29 | padding: 0; 30 | } 31 | .slick-list:focus 32 | { 33 | outline: none; 34 | } 35 | .slick-list.dragging 36 | { 37 | cursor: pointer; 38 | cursor: hand; 39 | } 40 | 41 | .slick-slider .slick-track, 42 | .slick-slider .slick-list 43 | { 44 | -webkit-transform: translate3d(0, 0, 0); 45 | -moz-transform: translate3d(0, 0, 0); 46 | -ms-transform: translate3d(0, 0, 0); 47 | -o-transform: translate3d(0, 0, 0); 48 | transform: translate3d(0, 0, 0); 49 | } 50 | 51 | .slick-track 52 | { 53 | position: relative; 54 | top: 0; 55 | left: 0; 56 | 57 | display: block; 58 | margin-left: auto; 59 | margin-right: auto; 60 | } 61 | .slick-track:before, 62 | .slick-track:after 63 | { 64 | display: table; 65 | 66 | content: ''; 67 | } 68 | .slick-track:after 69 | { 70 | clear: both; 71 | } 72 | .slick-loading .slick-track 73 | { 74 | visibility: hidden; 75 | } 76 | 77 | .slick-slide 78 | { 79 | display: none; 80 | float: left; 81 | 82 | height: 100%; 83 | min-height: 1px; 84 | } 85 | [dir='rtl'] .slick-slide 86 | { 87 | float: right; 88 | } 89 | .slick-slide img 90 | { 91 | display: block; 92 | } 93 | .slick-slide.slick-loading img 94 | { 95 | display: none; 96 | } 97 | .slick-slide.dragging img 98 | { 99 | pointer-events: none; 100 | } 101 | .slick-initialized .slick-slide 102 | { 103 | display: block; 104 | } 105 | .slick-loading .slick-slide 106 | { 107 | visibility: hidden; 108 | } 109 | .slick-vertical .slick-slide 110 | { 111 | display: block; 112 | 113 | height: auto; 114 | 115 | border: 1px solid transparent; 116 | } 117 | .slick-arrow.slick-hidden { 118 | display: none; 119 | } 120 | -------------------------------------------------------------------------------- /theme/plugins/slick-carousel/slick/slick.less: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | 3 | .slick-slider { 4 | position: relative; 5 | display: block; 6 | box-sizing: border-box; 7 | -webkit-touch-callout: none; 8 | -webkit-user-select: none; 9 | -khtml-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | -ms-touch-action: pan-y; 14 | touch-action: pan-y; 15 | -webkit-tap-highlight-color: transparent; 16 | } 17 | .slick-list { 18 | position: relative; 19 | overflow: hidden; 20 | display: block; 21 | margin: 0; 22 | padding: 0; 23 | 24 | &:focus { 25 | outline: none; 26 | } 27 | 28 | &.dragging { 29 | cursor: pointer; 30 | cursor: hand; 31 | } 32 | } 33 | .slick-slider .slick-track, 34 | .slick-slider .slick-list { 35 | -webkit-transform: translate3d(0, 0, 0); 36 | -moz-transform: translate3d(0, 0, 0); 37 | -ms-transform: translate3d(0, 0, 0); 38 | -o-transform: translate3d(0, 0, 0); 39 | transform: translate3d(0, 0, 0); 40 | } 41 | 42 | .slick-track { 43 | position: relative; 44 | left: 0; 45 | top: 0; 46 | display: block; 47 | margin-left: auto; 48 | margin-right: auto; 49 | 50 | &:before, 51 | &:after { 52 | content: ""; 53 | display: table; 54 | } 55 | 56 | &:after { 57 | clear: both; 58 | } 59 | 60 | .slick-loading & { 61 | visibility: hidden; 62 | } 63 | } 64 | .slick-slide { 65 | float: left; 66 | height: 100%; 67 | min-height: 1px; 68 | [dir="rtl"] & { 69 | float: right; 70 | } 71 | img { 72 | display: block; 73 | } 74 | &.slick-loading img { 75 | display: none; 76 | } 77 | 78 | display: none; 79 | 80 | &.dragging img { 81 | pointer-events: none; 82 | } 83 | 84 | .slick-initialized & { 85 | display: block; 86 | } 87 | 88 | .slick-loading & { 89 | visibility: hidden; 90 | } 91 | 92 | .slick-vertical & { 93 | display: block; 94 | height: auto; 95 | border: 1px solid transparent; 96 | } 97 | } 98 | .slick-arrow.slick-hidden { 99 | display: none; 100 | } 101 | -------------------------------------------------------------------------------- /theme/plugins/slick-carousel/slick/slick.scss: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | 3 | .slick-slider { 4 | position: relative; 5 | display: block; 6 | box-sizing: border-box; 7 | -webkit-touch-callout: none; 8 | -webkit-user-select: none; 9 | -khtml-user-select: none; 10 | -moz-user-select: none; 11 | -ms-user-select: none; 12 | user-select: none; 13 | -ms-touch-action: pan-y; 14 | touch-action: pan-y; 15 | -webkit-tap-highlight-color: transparent; 16 | } 17 | .slick-list { 18 | position: relative; 19 | overflow: hidden; 20 | display: block; 21 | margin: 0; 22 | padding: 0; 23 | 24 | &:focus { 25 | outline: none; 26 | } 27 | 28 | &.dragging { 29 | cursor: pointer; 30 | cursor: hand; 31 | } 32 | } 33 | .slick-slider .slick-track, 34 | .slick-slider .slick-list { 35 | -webkit-transform: translate3d(0, 0, 0); 36 | -moz-transform: translate3d(0, 0, 0); 37 | -ms-transform: translate3d(0, 0, 0); 38 | -o-transform: translate3d(0, 0, 0); 39 | transform: translate3d(0, 0, 0); 40 | } 41 | 42 | .slick-track { 43 | position: relative; 44 | left: 0; 45 | top: 0; 46 | display: block; 47 | margin-left: auto; 48 | margin-right: auto; 49 | 50 | &:before, 51 | &:after { 52 | content: ""; 53 | display: table; 54 | } 55 | 56 | &:after { 57 | clear: both; 58 | } 59 | 60 | .slick-loading & { 61 | visibility: hidden; 62 | } 63 | } 64 | .slick-slide { 65 | float: left; 66 | height: 100%; 67 | min-height: 1px; 68 | [dir="rtl"] & { 69 | float: right; 70 | } 71 | img { 72 | display: block; 73 | } 74 | &.slick-loading img { 75 | display: none; 76 | } 77 | 78 | display: none; 79 | 80 | &.dragging img { 81 | pointer-events: none; 82 | } 83 | 84 | .slick-initialized & { 85 | display: block; 86 | } 87 | 88 | .slick-loading & { 89 | visibility: hidden; 90 | } 91 | 92 | .slick-vertical & { 93 | display: block; 94 | height: auto; 95 | border: 1px solid transparent; 96 | } 97 | } 98 | .slick-arrow.slick-hidden { 99 | display: none; 100 | } 101 | -------------------------------------------------------------------------------- /theme/plugins/themify/fonts/themify.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/themify/fonts/themify.eot -------------------------------------------------------------------------------- /theme/plugins/themify/fonts/themify.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/themify/fonts/themify.ttf -------------------------------------------------------------------------------- /theme/plugins/themify/fonts/themify.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/themefisher/rappo-bootstrap/d6a08092875a234fbd9755fb38b020d72d96e9e8/theme/plugins/themify/fonts/themify.woff --------------------------------------------------------------------------------