├── .github └── workflows │ └── azure-static-web-apps-white-wave-0cc674a10.yml └── browny-v1.0 ├── assets ├── css │ ├── animate.css │ ├── bootsnav.css │ ├── bootstrap.min.css │ ├── flaticon.css │ ├── font-awesome.min.css │ ├── owl.carousel.min.css │ ├── owl.theme.default.min.css │ ├── responsive.css │ └── style.css ├── download │ └── browney.txt ├── fonts │ ├── Flaticon.eot │ ├── Flaticon.svg │ ├── Flaticon.ttf │ ├── Flaticon.woff │ ├── FontAwesome.otf │ ├── Linearicons-Free.eot │ ├── Linearicons-Free.svg │ ├── Linearicons-Free.ttf │ ├── Linearicons-Free.woff │ ├── Linearicons-Free.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── about │ │ ├── old.jpg │ │ ├── profile_image.jpg │ │ └── welcome-banner.jpg │ ├── clients │ │ ├── c1.png │ │ ├── c2.png │ │ ├── c3.png │ │ ├── c4.png │ │ ├── c5.png │ │ ├── c6.png │ │ └── c7.png │ └── portfolio │ │ ├── p1.jpg │ │ ├── p2.jpg │ │ ├── p3.jpg │ │ ├── p4.jpg │ │ └── p5.jpg ├── js │ ├── bootsnav.js │ ├── bootstrap.min.js │ ├── custom.js │ ├── jquery.appear.js │ ├── jquery.js │ ├── jquery.sticky.js │ ├── owl.carousel.min.js │ └── progressbar.js └── logo │ ├── favicon.png │ └── logo.png ├── index.html └── readme.txt /.github/workflows/azure-static-web-apps-white-wave-0cc674a10.yml: -------------------------------------------------------------------------------- 1 | name: Azure Static Web Apps CI/CD 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | pull_request: 8 | types: [opened, synchronize, reopened, closed] 9 | branches: 10 | - master 11 | 12 | jobs: 13 | build_and_deploy_job: 14 | if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') 15 | runs-on: ubuntu-latest 16 | name: Build and Deploy Job 17 | steps: 18 | - uses: actions/checkout@v3 19 | with: 20 | submodules: true 21 | lfs: false 22 | - name: Build And Deploy 23 | id: builddeploy 24 | uses: Azure/static-web-apps-deploy@v1 25 | with: 26 | azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_WHITE_WAVE_0CC674A10 }} 27 | repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) 28 | action: "upload" 29 | ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### 30 | # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig 31 | app_location: "./browny-v1.0" # App source code path 32 | api_location: "" # Api source code path - optional 33 | output_location: "." # Built app content directory - optional 34 | ###### End of Repository/Build Configurations ###### 35 | 36 | close_pull_request_job: 37 | if: github.event_name == 'pull_request' && github.event.action == 'closed' 38 | runs-on: ubuntu-latest 39 | name: Close Pull Request Job 40 | steps: 41 | - name: Close Pull Request 42 | id: closepullrequest 43 | uses: Azure/static-web-apps-deploy@v1 44 | with: 45 | azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_WHITE_WAVE_0CC674A10 }} 46 | action: "close" 47 | -------------------------------------------------------------------------------- /browny-v1.0/assets/css/flaticon.css: -------------------------------------------------------------------------------- 1 | /* 2 | Flaticon icon font: Flaticon 3 | Creation date: 07/05/2018 12:24 4 | */ 5 | 6 | @font-face { 7 | font-family: "Flaticon"; 8 | src: url("../fonts/Flaticon.eot"); 9 | src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"), 10 | url("../fonts/Flaticon.woff") format("woff"), 11 | url("../fonts/Flaticon.ttf") format("truetype"), 12 | url("../fonts/Flaticon.svg#Flaticon") format("svg"); 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | 17 | @media screen and (-webkit-min-device-pixel-ratio:0) { 18 | @font-face { 19 | font-family: "Flaticon"; 20 | src: url("../fonts/Flaticon.svg#Flaticon") format("svg"); 21 | } 22 | } 23 | 24 | [class^="flaticon-"]:before, [class*=" flaticon-"]:before, 25 | [class^="flaticon-"]:after, [class*=" flaticon-"]:after { 26 | font-family: Flaticon; 27 | font-size: 24px; 28 | font-style: normal; 29 | margin-left: 0px; 30 | } 31 | 32 | .flaticon-bitbucket-logotype-camera-lens-in-perspective:before { content: "\f100"; } 33 | .flaticon-squarespace-logo:before { content: "\f101"; } 34 | .flaticon-smug:before { content: "\f102"; } 35 | .flaticon-flickr-website-logo-silhouette:before { content: "\f103"; } 36 | .flaticon-github-logo:before { content: "\f104"; } 37 | .flaticon-behance-logo:before { content: "\f105"; } 38 | .flaticon-dribbble:before { content: "\f106"; } 39 | .flaticon-themeforest:before { content: "\f107"; } -------------------------------------------------------------------------------- /browny-v1.0/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} 5 | -------------------------------------------------------------------------------- /browny-v1.0/assets/css/owl.carousel.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.2.0 3 | * Copyright 2013-2016 David Deutsch 4 | * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE) 5 | */ 6 | .owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:-webkit-transform .1s ease;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-webkit-transform:scale(1.3,1.3);-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} -------------------------------------------------------------------------------- /browny-v1.0/assets/css/owl.theme.default.min.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Owl Carousel v2.2.1 3 | * Copyright 2013-2017 David Deutsch 4 | * Licensed under () 5 | */ 6 | .owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791} -------------------------------------------------------------------------------- /browny-v1.0/assets/css/responsive.css: -------------------------------------------------------------------------------- 1 | @media screen and (max-width:1680px){ 2 | 3 | }/*max-width:1680px*/ 4 | @media screen and (max-width:1440px){ 5 | .single-about-img img {max-width:100%;} 6 | .single-about-img:before,.about-list-icon{width: 100%;} 7 | }/*max-width:1440px*/ 8 | 9 | @media screen and (max-width:1199px){ 10 | nav.navbar.bootsnav ul.nav > li > a { padding: 35px 8px;} 11 | 12 | .welcome-hero {height: 768px;} 13 | 14 | .timeline-content span>i, .experience-time span>i {left: -15.5%;} 15 | }/*max-width:1199px*/ 16 | 17 | @media screen and (max-width:1024px){ 18 | 19 | 20 | }/*max-width:1024px*/ 21 | 22 | @media screen and (max-width:1008px){ 23 | nav.navbar.bootsnav ul.nav > li.dropdown span.megamenu-title {display:block;color: #43465d;font-size: 18px;} 24 | nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li .megamenu-sub-title a {margin-top: 20px;font-size: 14px;} 25 | nav.navbar.bootsnav ul.dropdown-menu.megamenu-content .content ul.menu-col li .megamenu-sub-txt a{margin-bottom: 15px;} 26 | }/*max-width:1008px*/ 27 | 28 | @media screen and (max-width:992px){ 29 | nav.navbar.bootsnav .navbar-collapse.collapse.in {padding-bottom: 30px;} 30 | nav.navbar.bootsnav .navbar-toggle {display: inline-block; float: right;margin-right: 0;margin-top: 21px;} 31 | nav.navbar.bootsnav .navbar-brand {float: left!important;} 32 | nav.navbar.bootsnav ul.nav > li > a {padding: 15px 0px;border: transparent;} 33 | }/*max-width:992px*/ 34 | 35 | @media screen and (max-width:991px){ 36 | .experience-time-responsive{display: block;} 37 | .experience-time-main{display: none;} 38 | .experience-time,.timeline-content{text-align: left;margin-bottom: 20px;margin-left: 40px;} 39 | .timeline-content span>i{left: 0%;top: -54%;} 40 | .experience-time span>i {left: -6%;top: 6%;} 41 | .main-timeline:before {left:0.4%;} 42 | 43 | .single-horizontal-timeline .experience-time,.single-horizontal-timeline .timeline-content {margin: 0;} 44 | }/*max-width:991px*/ 45 | 46 | @media screen and (max-width:768px){ 47 | 48 | }/*max-width:768px*/ 49 | 50 | @media screen and (max-width:767px){ 51 | .single-about-img {max-width: 450px;} 52 | .experience-time span>i,.timeline-content span>i,.main-timeline:before {display: none;} 53 | .experience-time, .timeline-content {margin-left: 0;} 54 | 55 | .isotope .item {max-width: 350px;margin: 0 auto 30px;} 56 | 57 | .single-profile {max-width: 350px; margin: 30px auto;border: 0;} 58 | .profile-border{border: 0;} 59 | 60 | .single-horizontal-timeline {max-width: 350px;margin: 30px auto;} 61 | 62 | }/*max-width:767px*/ 63 | 64 | @media screen and (max-width: 660px){ 65 | 66 | }/*max-width:660px*/ 67 | 68 | @media screen and (max-width: 640px){ 69 | 70 | }/*max-width:640px*/ 71 | 72 | @media screen and (max-width: 580px){ 73 | 74 | }/*max-width:580px*/ 75 | 76 | @media screen and (max-width: 540px){ 77 | .subscribe-title h2 {font-size: 24px;} 78 | 79 | }/*max-width:540px*/ 80 | 81 | @media screen and (max-width: 480px){ 82 | 83 | }/*max-width:480px*/ 84 | 85 | @media screen and (max-width: 440px){ 86 | 87 | }/*max-width:400px*/ 88 | 89 | @media screen and (max-width:350px){ 90 | 91 | }/*max-width:350px*/ 92 | 93 | @media screen and (max-width: 320px){ 94 | 95 | }/*max-width:320px*/ 96 | 97 | -------------------------------------------------------------------------------- /browny-v1.0/assets/css/style.css: -------------------------------------------------------------------------------- 1 | /*================================== 2 | * Author : "ThemeSine" 3 | * Template Name : Browny HTML Template 4 | * Version : 1.0 5 | ==================================== */ 6 | 7 | /*================================== 8 | font-family: 'Poppins', sans-serif; 9 | ==================================== */ 10 | 11 | 12 | /*=========== TABLE OF CONTENTS =========== 13 | 1. General css (Reset code) 14 | 2. Header 15 | 3. Welcome-hero 16 | 4. About me 17 | 5. Education 18 | 6. Skill 19 | 7. Experience 20 | 8. Profiles 21 | 9. Portfolio 22 | 10. Clients 23 | 11. Contact 24 | 25 | /*------------------------------------- 26 | 1.General css (Reset code) 27 | --------------------------------------*/ 28 | *{ 29 | padding: 0; 30 | margin: 0; 31 | } 32 | 33 | *{ 34 | -webkit-box-sizing:border-box; 35 | -moz-box-sizing:border-box; 36 | -o-box-sizing:border-box; 37 | -ms-box-sizing:border-box; 38 | box-sizing:border-box; 39 | } 40 | body{ 41 | font-family: 'Poppins', sans-serif; 42 | font-size:16px; 43 | color: #676a81; 44 | background: #fff; 45 | max-width:1920px; 46 | margin:0 auto; 47 | overflow-x:hidden; 48 | } 49 | 50 | a,a:hover,a:active,a:focus { 51 | display:inline-block; 52 | text-decoration:none; 53 | color: #6a708e; 54 | font-size:16px; 55 | padding:0; 56 | } 57 | h1,h2,h3,h4,h5,h6 { 58 | margin: 0; 59 | color:#43485c; 60 | font-size: 16px; 61 | font-family: 'Poppins', sans-serif; 62 | text-transform: capitalize; 63 | } 64 | p { 65 | margin: 0; 66 | line-height:1.8; 67 | color:#43485c; 68 | font-size:14px; 69 | font-family: 'Poppins', sans-serif; 70 | } 71 | img{border:none;max-width:100%; height:auto;} 72 | ul{ 73 | padding: 0; 74 | margin: 0 auto; 75 | list-style: none; 76 | } 77 | ul li { 78 | list-style: none; 79 | 80 | } 81 | select,input,textarea,button{box-shadow:none;outline:0!important;} 82 | button {background: transparent;border: 0;} 83 | 84 | html,body{ 85 | height: 100%; 86 | position: relative; 87 | } 88 | [placeholder]:focus::-webkit-input-placeholder { 89 | -webkit-transition: opacity 0.3s 0.3s ease; 90 | -moz-transition: opacity 0.3s 0.3s ease; 91 | -ms-transition: opacity 0.3s 0.3s ease; 92 | -o-transition: opacity 0.3s 0.3s ease; 93 | transition: opacity 0.3s 0.3s ease; 94 | opacity: 0; 95 | } 96 | 97 | .fix{position: relative;clear: both;} 98 | /*=============Style css=========*/ 99 | 100 | /*------------------------------------- 101 | 2. Header 102 | --------------------------------------*/ 103 | .top-area { 104 | position: relative; 105 | z-index: 9999; 106 | } 107 | @media (min-width: 1024px){} 108 | nav.navbar.bootsnav.no-background { 109 | background-color: #fff; 110 | border: none; 111 | } 112 | 113 | nav.navbar.bootsnav { 114 | background-color: #fff; 115 | border-bottom: transparent; 116 | box-shadow: 0 3px 15px rgba(0,0,0,.2); 117 | } 118 | 119 | /*.navbar-brand*/ 120 | .navbar-header a.navbar-brand,.navbar-header a.navbar-brand:hover,.navbar-header a.navbar-brand:focus { 121 | display: inline-block; 122 | color: #d92cf9; 123 | font-size: 20px; 124 | font-weight: 600; 125 | padding: 33px 0px 57px; 126 | text-transform: uppercase; 127 | } 128 | /*.navbar-brand*/ 129 | 130 | /*.nav li*/ 131 | nav.navbar.bootsnav ul.nav > li > a { 132 | font-size: 16px; 133 | font-weight: 400; 134 | text-transform:uppercase; 135 | -webkit-transition: 0.3s linear; 136 | -moz-transition: 0.3s linear; 137 | -ms-transition: 0.3s linear; 138 | -o-transition: 0.3s linear; 139 | transition: 0.3s linear; 140 | } 141 | nav.navbar.bootsnav ul.nav > li > a {padding: 35px 20px;} 142 | nav.navbar.bootsnav ul.nav > li > a:hover,nav.navbar.bootsnav ul.nav > li > a:focus,nav.navbar.bootsnav ul.nav > li.active>a{color: #d92cf9;} 143 | 144 | nav.navbar.bootsnav ul.nav > li.dropdown > a.dropdown-toggle:after { 145 | content: ""; 146 | } 147 | nav.navbar.bootsnav ul.nav > li.dropdown span { 148 | font-size: 8px; 149 | margin-left: 15px; 150 | } 151 | .sticky-wrapper.is-sticky nav.navbar.bootsnav ul.nav > li > a {color:#6a708e;} 152 | .sticky-wrapper.is-sticky nav.navbar.bootsnav ul.nav > li > a:hover,.sticky-wrapper.is-sticky nav.navbar.bootsnav ul.nav > li > a:focus,.sticky-wrapper.is-sticky nav.navbar.bootsnav ul.nav > li.active>a{color: #d92cf9;} 153 | /*.nav li*/ 154 | 155 | 156 | 157 | /*.menu-ui-design*/ 158 | .menu-ui-design{overflow-y:scroll;height: 350px;} 159 | .menu-ui-design::-webkit-scrollbar { 160 | width:5px; 161 | } 162 | .menu-ui-design::-webkit-scrollbar-track { 163 | -webkit-box-shadow: inset 0 0 8px #000; 164 | } 165 | .menu-ui-design::-webkit-scrollbar-thumb { 166 | background-color: #d92cf9; 167 | } 168 | /*.menu-ui-design*/ 169 | 170 | 171 | 172 | /*.navbar-toggle */ 173 | nav.navbar.bootsnav .navbar-toggle { 174 | position: relative; 175 | background-color: transparent; 176 | border: 1px solid #d92cf9; 177 | padding: 10px; 178 | top: 0; 179 | } 180 | nav.navbar.bootsnav .navbar-toggle i{color: #d92cf9;} 181 | /*.navbar-toggle */ 182 | 183 | 184 | 185 | /*------------------------------------- 186 | 3. Welcome-hero 187 | --------------------------------------*/ 188 | .welcome-hero{ 189 | display: flex; 190 | align-items: center; 191 | justify-content: center; 192 | position:relative; 193 | background:url(../images/about/welcome-banner.jpg)no-repeat; 194 | background-size:cover; 195 | background-position: center; 196 | height:890px; 197 | } 198 | .welcome-hero:before{ 199 | position:absolute; 200 | content: " "; 201 | top:0; 202 | left:0; 203 | background:rgba(31,44,108,.65); 204 | width:100%; 205 | height:100%; 206 | } 207 | 208 | /*.header-text-area*/ 209 | .header-text h2 { 210 | color: #fff; 211 | font-size: 54px; 212 | font-weight: 700; 213 | text-transform: uppercase; 214 | line-height: 1.5; 215 | } 216 | .header-text h2 span {color: #d92cf9;} 217 | .header-text p { 218 | color: #fff; 219 | font-size: 20px; 220 | font-weight: 300; 221 | text-transform: uppercase; 222 | margin: 30px 0 60px; 223 | letter-spacing: 1px; 224 | } 225 | .header-text a { 226 | width: 200px; 227 | height: 60px; 228 | line-height: 60px; 229 | border-radius: 3px; 230 | text-transform: capitalize; 231 | color: #fff; 232 | background: #b636ff; 233 | border:1px solid #b636ff; 234 | box-shadow: 0 5px 20px rgba(0,0,0,.2); 235 | -webkit-transition: 0.3s linear; 236 | -moz-transition: 0.3s linear; 237 | -ms-transition: 0.3s linear; 238 | -o-transition: 0.3s linear; 239 | transition: 0.3s linear; 240 | } 241 | .header-text a:hover{ box-shadow: 0 5px 20px rgba(0,0,0,.4);background:#9f00ff;border: 1px solid #9f00ff;} 242 | /*.header-text-area*/ 243 | 244 | /*------------------------------------- 245 | 4. About 246 | --------------------------------------*/ 247 | .about {padding: 50px 0 100px;} 248 | .about-content {padding-top: 100px;} 249 | /*.single-about-txt*/ 250 | .single-about-txt h3 { 251 | font-size:18px; 252 | color: #3c4258; 253 | text-transform: initial; 254 | line-height: 1.8; 255 | } 256 | .single-about-txt p { 257 | font-size: 16px; 258 | color: #999fb3; 259 | padding: 35px 0 43px; 260 | border-bottom: 1px solid #999fb3; 261 | } 262 | .single-about-add-info { 263 | margin: 35px 0; 264 | } 265 | .single-about-add-info h3 { 266 | color: #636a82; 267 | font-size: 16px; 268 | text-transform: capitalize; 269 | } 270 | .single-about-add-info p {font-weight: 300;border: 0;padding: 0;margin-top: 3px;} 271 | /*.single-about-txt*/ 272 | 273 | /*.single-about-img */ 274 | .single-about-img{position: relative;box-shadow: 0 5px 20px rgba(14,25,80,.30);} 275 | .single-about-img:before { 276 | position: absolute; 277 | content: " "; 278 | top: 0; 279 | left: 0; 280 | width: 109%; 281 | height: 100%; 282 | background: rgba(31,44,108,.3); 283 | } 284 | .single-about-img img { 285 | max-width: 500px; 286 | height: 468px; 287 | } 288 | .about-list-icon{ 289 | display: flex; 290 | justify-content: center; 291 | align-items: center; 292 | position: absolute; 293 | bottom: 0; 294 | left: 0; 295 | width: 109%; 296 | height: 90px; 297 | background: #1f2c6c; 298 | } 299 | /*.ab-list-icon */ 300 | .about-list-icon ul { 301 | display: flex; 302 | } 303 | .about-list-icon ul li a { 304 | padding-right: 22px; 305 | cursor:pointer; 306 | color: #fff; 307 | } 308 | .about-list-icon ul li a { 309 | cursor: pointer; 310 | color: #fff; 311 | display: inline-block; 312 | border: 2px solid; 313 | margin-left: 20px; 314 | border-radius: 8px; 315 | width: 30px; 316 | height: 30px; 317 | line-height: 28px; 318 | text-align: center; 319 | } 320 | .about-list-icon ul li a i { 321 | margin-left: 6px; 322 | } 323 | /*.ab-list-icon */ 324 | 325 | /*.single-about-img */ 326 | 327 | /*------------------------------------- 328 | 5. Education 329 | --------------------------------------*/ 330 | 331 | .education { 332 | background: #f9fbfd; 333 | padding-top: 50px; 334 | } 335 | .education-horizontal-timeline { 336 | padding: 80px 0; 337 | } 338 | 339 | /*.education-horizontal-timeline*/ 340 | .education-horizontal-timeline .col-sm-4 {padding:0 2px;} 341 | 342 | .single-horizontal-timeline .experience-time h3{text-transform: capitalize;} 343 | .single-horizontal-timeline .experience-time h3 span{text-transform:lowercase;} 344 | .single-horizontal-timeline .timeline-content h5 {margin: 15px 0;} 345 | .single-horizontal-timeline p {color: #999fb3;max-width: 335px;} 346 | 347 | /*.timeline-horizontal-border*/ 348 | .timeline-horizontal-border { 349 | display: flex; 350 | align-items: center; 351 | padding: 26px 0 30px; 352 | } 353 | .timeline-horizontal-border i { 354 | font-size: 10px; 355 | color: #d92cf9; 356 | margin-right: 5px; 357 | } 358 | span.single-timeline-horizontal { 359 | display: inline-block; 360 | background: #b2c1ce; 361 | height: 1px; 362 | width: 380px; 363 | } 364 | span.single-timeline-horizontal.spacial-horizontal-line {width: 88px;} 365 | /*.timeline-horizontal-border*/ 366 | 367 | /*.education-horizontal-timeline*/ 368 | 369 | /*------------------------------------- 370 | 6. Skills 371 | --------------------------------------*/ 372 | .skills { 373 | 374 | } 375 | .skill-content{padding: 50px 0 80px;} 376 | .single-skill-content{padding-top: 100px;} 377 | .section-heading h2 { 378 | font-size: 24px; 379 | font-weight: 600; 380 | text-transform: uppercase; 381 | padding-bottom: 50px; 382 | border-bottom: 1px solid #e5ebf2; 383 | } 384 | .single-progress-txt { 385 | display: flex; 386 | } 387 | .single-progress-txt h3 { 388 | width: 10%; 389 | color: #a606c3; 390 | position: relative; 391 | top: 6px; 392 | left: 20px; 393 | } 394 | .barWrapper { 395 | font-weight: 400; 396 | font-size: 16px; 397 | text-transform: uppercase; 398 | } 399 | .progress { 400 | border-radius:3px; 401 | overflow: visible; 402 | background: #e6ecf3; 403 | height:8px; 404 | margin-top: 15px; 405 | width: 85%; 406 | margin-bottom: 37px; 407 | } 408 | .progress-bar { 409 | background: #b636ff; 410 | border-radius: 3px; 411 | -webkit-transition: width 1.5s ease-in-out; 412 | -ms-transition: width 1.5s ease-in-out; 413 | -moz-transition: width 1.5s ease-in-out; 414 | -o-transition: width 1.5s ease-in-out; 415 | transition: width 1.5s ease-in-out; 416 | } 417 | .tooltip{ 418 | position:relative; 419 | float:right; 420 | } 421 | .tooltip > .tooltip-inner { 422 | background-color: transparent; 423 | padding: 1px 5px; 424 | color: #b636ff; 425 | font-weight: 500; 426 | font-size: 12px; 427 | border-radius: 0; 428 | } 429 | .popOver + .tooltip > .tooltip-arrow { 430 | border-left: 6px solid transparent; 431 | border-right: 6px solid transparent; 432 | border-top: 6px solid #fff; 433 | bottom: -1px; 434 | transform: translateX(-50%); 435 | margin-left: 0; 436 | } 437 | 438 | /*------------------------------------- 439 | 7. Experience 440 | -------------------------------------*/ 441 | .experience { 442 | padding: 50px 0 100px; 443 | border-top: 1px solid #e5ebf2; 444 | } 445 | .experience-content {padding-top: 100px;} 446 | .single-timeline-box {margin-bottom: 75px;} 447 | 448 | /*experience-time*/ 449 | .experience-time { 450 | position: relative; 451 | } 452 | .experience-time h2 { 453 | font-weight: 400; 454 | } 455 | .experience-time h3 { 456 | font-size: 16px; 457 | font-weight: 300; 458 | color: #636a82; 459 | margin-top: 14px; 460 | text-transform: uppercase; 461 | } 462 | /*experience-time*/ 463 | 464 | /*main-timeline*/ 465 | .main-timeline{ 466 | position: relative; 467 | } 468 | .main-timeline:before{ 469 | content: ""; 470 | width: 2px; 471 | height: 84%; 472 | background: #b2c1ce; 473 | position: absolute; 474 | top: 1.5%; 475 | left: 45.8%; 476 | z-index: -1; 477 | } 478 | .main-timeline .timeline{ 479 | position: relative; 480 | } 481 | 482 | .timeline-content span>i, .experience-time span>i { 483 | color: #d92cf9; 484 | position: absolute; 485 | font-size: 10px; 486 | left: -14.5%; 487 | z-index: 1; 488 | } 489 | .timeline-content h4.title { 490 | font-size: 16px; 491 | font-weight: 400; 492 | text-transform: uppercase; 493 | } 494 | .timeline-content h5 { 495 | color: #636a82; 496 | font-size: 14px; 497 | font-weight: 300; 498 | margin: 18px 0 20px; 499 | } 500 | .main-timeline .description { 501 | font-size: 14px; 502 | color: #999fb3; 503 | } 504 | .main-timeline .timeline-content.right{ 505 | float: right; 506 | text-align: left; 507 | } 508 | .timeline-single-before:before { 509 | content: ''; 510 | top: 57px; 511 | left: -3px; 512 | position: absolute; 513 | width: 100%; 514 | height:400px; 515 | border-left:15px solid #fff; 516 | } 517 | 518 | .experience-time-responsive{display: none;} 519 | /*------------------------------------- 520 | 8. Profiles 521 | --------------------------------------*/ 522 | .profiles { 523 | padding: 50px 0 100px; 524 | border: 1px solid #e5ebf2; 525 | } 526 | 527 | .profiles-content {padding-top: 100px;} 528 | .profiles-content .col-sm-3{padding:0;} 529 | .profile-txt { 530 | display: flex; 531 | align-items: center; 532 | flex-direction: column; 533 | } 534 | .single-profile { 535 | position: relative; 536 | height: 150px; 537 | display: flex; 538 | justify-content: center; 539 | align-items: center; 540 | border-right: 1px solid #b2c1ce; 541 | overflow:hidden; 542 | -webkit-transition:background 0.5s linear; 543 | -moz-transition:background 0.5s linear; 544 | -ms-transition:background 0.5s linear; 545 | -o-transition:background 0.5s linear; 546 | transition:background 0.5s linear; 547 | } 548 | .profile-icon-name { 549 | text-transform: capitalize; 550 | color: #636a82; 551 | font-size: 16px; 552 | } 553 | .single-profile.profile-no-border{border-right:transparent;} 554 | .profile-border { 555 | border-bottom: 1px solid #b2c1ce; 556 | } 557 | .single-profile-overlay{ 558 | display:flex; 559 | align-items:center; 560 | text-transform: capitalize; 561 | justify-content:center; 562 | position: absolute; 563 | top: 0; 564 | left: 0; 565 | content: " "; 566 | width:100%; 567 | height: 100%; 568 | background: #d92cf9; 569 | background: -moz-linear-gradient(left, #d92cf9 0%, #b636ff 100%); 570 | background: -webkit-linear-gradient(left, #d92cf9 0%,#b636ff 100%); 571 | background: linear-gradient(to right, #d92cf9 0%,#b636ff 100%); 572 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d92cf9', endColorstr='#b636ff',GradientType=1 ); 573 | -webkit-transform:scale(0); 574 | -moz-transform:scale(0); 575 | -ms-transform:scale(0); 576 | -o-transform:scale(0); 577 | transform:scale(0); 578 | -webkit-transition: .5s; 579 | -moz-transition: .5s; 580 | -ms-transition: .5s; 581 | -o-transition: .5s; 582 | transition: .5s; 583 | } 584 | .single-profile:hover .single-profile-overlay{ 585 | -webkit-transform:scale(1); 586 | -moz-transform:scale(1); 587 | -ms-transform:scale(1); 588 | -o-transform:scale(1); 589 | transform:scale(1); 590 | top:0; 591 | } 592 | .single-profile:hover .profile-icon-name,.single-profile:hover .profile-txt a>i{color: #fff;} 593 | .single-profile:hover .profile-border {border:transparent;} 594 | /*------------------------------------- 595 | 9. Portfolio 596 | --------------------------------------*/ 597 | .portfolio { 598 | padding: 50px 0 100px; 599 | border: 1px solid #e5ebf2; 600 | } 601 | 602 | .portfolio-content {padding-top: 100px;} 603 | 604 | /* ---- .item ---- */ 605 | .isotope:after { 606 | content: ''; 607 | display: block; 608 | clear: both; 609 | } 610 | .isotope .item { 611 | position:relative; 612 | overflow:hidden; 613 | margin-bottom: 30px; 614 | } 615 | /*.item img*/ 616 | .isotope .item img{ 617 | width:100%; 618 | height:100%; 619 | -webkit-transition: .5s; 620 | -moz-transition: .5s; 621 | -ms-transition: .5s; 622 | -o-transition: .5s; 623 | transition: .5s; 624 | } 625 | .isotope .item:hover img{ 626 | -webkit-transform:scale(1.5); 627 | -moz-transform:scale(1.5); 628 | -ms-transform:scale(1.5); 629 | -o-transform:scale(1.5); 630 | transform:scale(1.5); 631 | }/*.item img*/ 632 | 633 | /*.isotope-overlay*/ 634 | .isotope-overlay{ 635 | position:absolute; 636 | height:100%; 637 | width:100%; 638 | background:rgba(31,44,108,.5); 639 | display:flex; 640 | align-items:center; 641 | text-transform: uppercase; 642 | justify-content:center; 643 | flex-direction:row; 644 | -webkit-transform:scale(0); 645 | -moz-transform:scale(0); 646 | -ms-transform:scale(0); 647 | -o-transform:scale(0); 648 | transform:scale(0); 649 | -webkit-transition: .5s; 650 | -moz-transition: .5s; 651 | -ms-transition: .5s; 652 | -o-transition: .5s; 653 | transition: .5s; 654 | } 655 | .isotope-overlay a { 656 | display: inline-block; 657 | color: #fff; 658 | font-size: 14px; 659 | text-align: center; 660 | } 661 | .isotope .item:hover .isotope-overlay{ 662 | -webkit-transform:scale(1); 663 | -moz-transform:scale(1); 664 | -ms-transform:scale(1); 665 | -o-transform:scale(1); 666 | transform:scale(1); 667 | top:0; 668 | }/*.isotope-overlay*/ 669 | 670 | /*------------------------------------- 671 | 10. Clients 672 | --------------------------------------*/ 673 | .clients {padding-top: 50px;} 674 | .clients-area { 675 | display: flex; 676 | align-items: center; 677 | height: 250px; 678 | } 679 | .clients-area .item {padding: 0 25px;} 680 | 681 | .clients .clients-area .owl-carousel .owl-item img { 682 | display: block; 683 | width: 100%; 684 | height: auto; 685 | border-radius:0; 686 | } 687 | 688 | /*------------------------------------- 689 | 11. Contact 690 | --------------------------------------*/ 691 | .contact { 692 | background: #f9fbfd; 693 | padding: 50px 0 100px; 694 | } 695 | .single-contact-box {padding-top: 100px;} 696 | .contact-form .form-group { 697 | margin-bottom: 20px; 698 | 699 | } 700 | .contact-form .form-control { 701 | padding: 25px; 702 | font-size: 14px; 703 | border: 1px solid #fff; 704 | border-radius: 0px; 705 | box-shadow: none; 706 | outline: 0!important; 707 | background: #fff; 708 | color: #636a82; 709 | resize: none; 710 | } 711 | 712 | /*--contct button--*/ 713 | .contact-form .single-contact-btn { 714 | display:flex; 715 | align-items:center; 716 | justify-content:center; 717 | height:50px; 718 | text-transform:capitalize; 719 | margin-top: 3px; 720 | background: #b636ff; 721 | border: 1px solid #b636ff; 722 | cursor:pointer; 723 | box-shadow: 0 5px 20px rgba(0,0,0,.2); 724 | -webkit-transition: .5s; 725 | -moz-transition:.5s; 726 | -ms-transition:.5s; 727 | -o-transition:.5s; 728 | transition: .5s; 729 | } 730 | .contact-form .single-contact-btn .contact-btn , 731 | .contact-form .single-contact-btn .contact-btn:focus { 732 | margin-top:0px; 733 | outline: 0 !important; 734 | border:0; 735 | color: #fff; 736 | border-radius: 0px; 737 | font-size:14px; 738 | -webkit-transition: .5s; 739 | -moz-transition:.5s; 740 | -ms-transition:.5s; 741 | -o-transition:.5s; 742 | transition: .5s; 743 | 744 | } 745 | .single-contact-btn:hover{ 746 | background: #9f00ff; 747 | border: 1px solid #9f00ff; 748 | box-shadow: 0 5px 20px rgba(0,0,0,.2); 749 | } 750 | 751 | /*--contct button--*/ 752 | 753 | /* contact-adress */ 754 | .contact-add-head h3 { 755 | font-size: 24px; 756 | color: #3c4258; 757 | } 758 | .contact-add-head p { 759 | font-size: 16px; 760 | text-transform: capitalize; 761 | color: #636a82; 762 | font-weight: 300; 763 | margin-top: 6px; 764 | } 765 | /* contact-adress */ 766 | 767 | /*.contact-add-info */ 768 | .contact-add-info { margin: 42px 0 52px;} 769 | .single-contact-add-info h3 { 770 | color: #636a82; 771 | font-weight: 500; 772 | } 773 | .single-contact-add-info p { 774 | color: #999fb3; 775 | font-size: 16px; 776 | margin-top: 18px; 777 | } 778 | .single-contact-add-info { 779 | margin-bottom: 26px; 780 | } 781 | /*.contact-add-info */ 782 | 783 | /*hm-foot-icon*/ 784 | .hm-foot-icon { 785 | 786 | } 787 | .hm-foot-icon ul li{float:left;} 788 | .hm-foot-icon ul li>a { 789 | color: #636a82; 790 | margin-right:18px; 791 | -webkit-transition: .3s; 792 | -moz-transition:.3s; 793 | -ms-transition:.3s; 794 | -o-transition:.3s; 795 | transition: .3s; 796 | } 797 | .hm-foot-icon ul li>a:hover{ 798 | color: #b636ff; 799 | }/*hm-foot-icon*/ 800 | 801 | .hm-footer-copyright p{ 802 | color: #888ea5; 803 | text-transform: capitalize; 804 | padding: 38px 0; 805 | } 806 | .hm-footer-copyright p a {color: #888ea5;} 807 | /*=============================== 808 | Scroll Top 809 | ===============================*/ 810 | #scroll-Top .return-to-top { 811 | position: fixed; 812 | right: 30px; 813 | bottom: 30px; 814 | display: none; 815 | width: 40px; 816 | line-height: 40px; 817 | height: 40px; 818 | text-align: center; 819 | font-size: 20px; 820 | cursor: pointer; 821 | color: #fff; 822 | background:#b636ff; 823 | border:1px solid #b636ff; 824 | border-radius:50%; 825 | -webkit-transition: .5s; 826 | -moz-transition:.5s; 827 | -ms-transition:.5s; 828 | -o-transition:.5s; 829 | transition: .5s; 830 | z-index: 2; 831 | } 832 | #scroll-Top .return-to-top:hover { 833 | background:#fff; 834 | color: #b636ff; 835 | border:1px solid #b636ff; 836 | } 837 | 838 | #scroll-Top .return-to-top i{ 839 | position:relative; 840 | bottom:0; 841 | 842 | } 843 | 844 | #scroll-Top .return-to-top i{ 845 | position: relative; 846 | animation-name: example; 847 | animation-direction: alternate; 848 | animation-iteration-count: infinite; 849 | animation-duration:1s; 850 | } 851 | @keyframes example { 852 | 0% {bottom:0px;} 853 | 100% {bottom:7px;} 854 | } 855 | /*========================Thank you================= -------------------------------------------------------------------------------- /browny-v1.0/assets/download/browney.txt: -------------------------------------------------------------------------------- 1 | Wellcome Themesine World! -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/Flaticon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/Flaticon.eot -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/Flaticon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | Created by FontForge 20160405 at Mon May 7 12:24:50 2018 9 | By Apache 10 | Copyright (c) 2018, Apache 11 | 12 | 13 | 14 | 27 | 28 | 30 | 48 | 59 | 66 | 78 | 86 | 96 | 105 | 118 | 119 | 120 | -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/Flaticon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/Flaticon.ttf -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/Flaticon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/Flaticon.woff -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/Linearicons-Free.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/Linearicons-Free.eot -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/Linearicons-Free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/Linearicons-Free.ttf -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/Linearicons-Free.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/Linearicons-Free.woff -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/Linearicons-Free.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/Linearicons-Free.woff2 -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /browny-v1.0/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /browny-v1.0/assets/images/about/old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/about/old.jpg -------------------------------------------------------------------------------- /browny-v1.0/assets/images/about/profile_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/about/profile_image.jpg -------------------------------------------------------------------------------- /browny-v1.0/assets/images/about/welcome-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/about/welcome-banner.jpg -------------------------------------------------------------------------------- /browny-v1.0/assets/images/clients/c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/clients/c1.png -------------------------------------------------------------------------------- /browny-v1.0/assets/images/clients/c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/clients/c2.png -------------------------------------------------------------------------------- /browny-v1.0/assets/images/clients/c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/clients/c3.png -------------------------------------------------------------------------------- /browny-v1.0/assets/images/clients/c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/clients/c4.png -------------------------------------------------------------------------------- /browny-v1.0/assets/images/clients/c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/clients/c5.png -------------------------------------------------------------------------------- /browny-v1.0/assets/images/clients/c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/clients/c6.png -------------------------------------------------------------------------------- /browny-v1.0/assets/images/clients/c7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/clients/c7.png -------------------------------------------------------------------------------- /browny-v1.0/assets/images/portfolio/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/portfolio/p1.jpg -------------------------------------------------------------------------------- /browny-v1.0/assets/images/portfolio/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/portfolio/p2.jpg -------------------------------------------------------------------------------- /browny-v1.0/assets/images/portfolio/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/portfolio/p3.jpg -------------------------------------------------------------------------------- /browny-v1.0/assets/images/portfolio/p4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/portfolio/p4.jpg -------------------------------------------------------------------------------- /browny-v1.0/assets/images/portfolio/p5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Manashadharanya/static-webpage-azure/e0280604768055c57951c08f676c14d579b49594/browny-v1.0/assets/images/portfolio/p5.jpg -------------------------------------------------------------------------------- /browny-v1.0/assets/js/bootsnav.js: -------------------------------------------------------------------------------- 1 | // ------------------------------------------------------------------------------ // 2 | // 3 | // Template name : Bootsnav - Multi Purpose Header 4 | // Categorie : Bootstrap Menu in CSS 5 | // Author : adamnurdin01 6 | // Version : v.1.2 7 | // Created : 2016-06-02 8 | // Last update : 2016-10-19 9 | // 10 | // ------------------------------------------------------------------------------ // 11 | 12 | (function ($) { 13 | "use strict"; 14 | 15 | var bootsnav = { 16 | initialize: function() { 17 | this.event(); 18 | this.hoverDropdown(); 19 | this.navbarSticky(); 20 | this.navbarScrollspy(); 21 | }, 22 | event : function(){ 23 | 24 | // ------------------------------------------------------------------------------ // 25 | // Variable 26 | // ------------------------------------------------------------------------------ // 27 | var getNav = $("nav.navbar.bootsnav"); 28 | 29 | // ------------------------------------------------------------------------------ // 30 | // Navbar Sticky 31 | // ------------------------------------------------------------------------------ // 32 | var navSticky = getNav.hasClass("navbar-sticky"); 33 | if( navSticky ){ 34 | // Wraped navigation 35 | getNav.wrap("
"); 36 | } 37 | 38 | // ------------------------------------------------------------------------------ // 39 | // Navbar Center 40 | // ------------------------------------------------------------------------------ // 41 | if( getNav.hasClass("brand-center")){ 42 | var postsArr = new Array(), 43 | index = $("nav.brand-center"), 44 | $postsList = index.find('ul.navbar-nav'); 45 | 46 | index.prepend(""); 47 | 48 | //Create array of all posts in lists 49 | index.find('ul.navbar-nav > li').each(function(){ 50 | if( $(this).hasClass("active") ){ 51 | var getElement = $("a", this).eq(0).text(); 52 | $(".storage-name").html(getElement); 53 | } 54 | postsArr.push($(this).html()); 55 | }); 56 | 57 | //Split the array at this point. The original array is altered. 58 | var firstList = postsArr.splice(0, Math.round(postsArr.length / 2)), 59 | secondList = postsArr, 60 | ListHTML = ''; 61 | 62 | var createHTML = function(list){ 63 | ListHTML = ''; 64 | for (var i = 0; i < list.length; i++) { 65 | ListHTML += '
  • ' + list[i] + '
  • ' 66 | } 67 | } 68 | 69 | //Generate HTML for first list 70 | createHTML(firstList); 71 | $postsList.html(ListHTML); 72 | index.find("ul.nav").first().addClass("navbar-left"); 73 | 74 | //Generate HTML for second list 75 | createHTML(secondList); 76 | //Create new list after original one 77 | $postsList.after('').next().html(ListHTML); 78 | index.find("ul.nav").last().addClass("navbar-right"); 79 | 80 | //Wrap navigation menu 81 | index.find("ul.nav.navbar-left").wrap("
    "); 82 | index.find("ul.nav.navbar-right").wrap("
    "); 83 | 84 | //Selection Class 85 | index.find('ul.navbar-nav > li').each(function(){ 86 | var dropDown = $("ul.dropdown-menu", this), 87 | megaMenu = $("ul.megamenu-content", this); 88 | dropDown.closest("li").addClass("dropdown"); 89 | megaMenu.closest("li").addClass("megamenu-fw"); 90 | }); 91 | 92 | var getName = $(".storage-name").html(); 93 | if( !getName == "" ){ 94 | $( "ul.navbar-nav > li:contains('" + getName + "')" ).addClass("active"); 95 | } 96 | } 97 | 98 | 99 | // ------------------------------------------------------------------------------ // 100 | // Navbar Sidebar 101 | // ------------------------------------------------------------------------------ // 102 | if( getNav.hasClass("navbar-sidebar")){ 103 | // Add Class to body 104 | $("body").addClass("wrap-nav-sidebar"); 105 | getNav.wrapInner("
    "); 106 | }else{ 107 | $(".bootsnav").addClass("on"); 108 | } 109 | 110 | // ------------------------------------------------------------------------------ // 111 | // Menu Center 112 | // ------------------------------------------------------------------------------ // 113 | if( getNav.find("ul.nav").hasClass("navbar-center")){ 114 | getNav.addClass("menu-center"); 115 | } 116 | 117 | // ------------------------------------------------------------------------------ // 118 | // Navbar Full 119 | // ------------------------------------------------------------------------------ // 120 | if( getNav.hasClass("navbar-full")){ 121 | // Add Class to body 122 | $("nav.navbar.bootsnav").find("ul.nav").wrap("
    "); 123 | $(".wrap-full-menu").wrap(""); 124 | $("ul.nav.navbar-nav").prepend("
  • "); 125 | }else if( getNav.hasClass("navbar-mobile")){ 126 | getNav.removeClass("no-full"); 127 | }else{ 128 | getNav.addClass("no-full"); 129 | } 130 | 131 | // ------------------------------------------------------------------------------ // 132 | // Navbar Mobile 133 | // ------------------------------------------------------------------------------ // 134 | if( getNav.hasClass("navbar-mobile")){ 135 | // Add Class to body 136 | $('.navbar-collapse').on('shown.bs.collapse', function() { 137 | $("body").addClass("side-right"); 138 | }); 139 | $('.navbar-collapse').on('hide.bs.collapse', function() { 140 | $("body").removeClass("side-right"); 141 | }); 142 | 143 | $(window).on("resize", function(){ 144 | $("body").removeClass("side-right"); 145 | }); 146 | } 147 | 148 | // ------------------------------------------------------------------------------ // 149 | // Navbar Fixed 150 | // ------------------------------------------------------------------------------ // 151 | if( getNav.hasClass("no-background")){ 152 | $(window).on("scroll", function(){ 153 | var scrollTop = $(window).scrollTop(); 154 | if(scrollTop >34){ 155 | $(".navbar-fixed").removeClass("no-background"); 156 | }else { 157 | $(".navbar-fixed").addClass("no-background"); 158 | } 159 | }); 160 | } 161 | 162 | // ------------------------------------------------------------------------------ // 163 | // Navbar Fixed 164 | // ------------------------------------------------------------------------------ // 165 | if( getNav.hasClass("navbar-transparent")){ 166 | $(window).on("scroll", function(){ 167 | var scrollTop = $(window).scrollTop(); 168 | if(scrollTop >34){ 169 | $(".navbar-fixed").removeClass("navbar-transparent"); 170 | }else { 171 | $(".navbar-fixed").addClass("navbar-transparent"); 172 | } 173 | }); 174 | } 175 | 176 | // ------------------------------------------------------------------------------ // 177 | // Button Cart 178 | // ------------------------------------------------------------------------------ // 179 | $(".btn-cart").on("click", function(e){ 180 | e.stopPropagation(); 181 | }); 182 | 183 | // ------------------------------------------------------------------------------ // 184 | // Toggle Search 185 | // ------------------------------------------------------------------------------ // 186 | $("nav.navbar.bootsnav .attr-nav").each(function(){ 187 | $("li.search > a", this).on("click", function(e){ 188 | e.preventDefault(); 189 | $(".top-search").slideToggle(); 190 | }); 191 | }); 192 | $(".input-group-addon.close-search").on("click", function(){ 193 | $(".top-search").slideUp(); 194 | }); 195 | 196 | // ------------------------------------------------------------------------------ // 197 | // Toggle Side Menu 198 | // ------------------------------------------------------------------------------ // 199 | $("nav.navbar.bootsnav .attr-nav").each(function(){ 200 | $("li.side-menu > a", this).on("click", function(e){ 201 | e.preventDefault(); 202 | $("nav.navbar.bootsnav > .side").toggleClass("on"); 203 | $("body").toggleClass("on-side"); 204 | }); 205 | }); 206 | $(".side .close-side").on("click", function(e){ 207 | e.preventDefault(); 208 | $("nav.navbar.bootsnav > .side").removeClass("on"); 209 | $("body").removeClass("on-side"); 210 | }); 211 | 212 | 213 | 214 | // ------------------------------------------------------------------------------ // 215 | // Wrapper 216 | // ------------------------------------------------------------------------------ // 217 | $("body").wrapInner( "
    "); 218 | }, 219 | 220 | 221 | // ------------------------------------------------------------------------------ // 222 | // Change dropdown to hover on dekstop 223 | // ------------------------------------------------------------------------------ // 224 | hoverDropdown : function(){ 225 | var getNav = $("nav.navbar.bootsnav"), 226 | getWindow = $(window).width(), 227 | getHeight = $(window).height(), 228 | getIn = getNav.find("ul.nav").data("in"), 229 | getOut = getNav.find("ul.nav").data("out"); 230 | 231 | if( getWindow < 991 ){ 232 | 233 | // Height of scroll navigation sidebar 234 | $(".scroller").css("height", "auto"); 235 | 236 | // Disable mouseenter event 237 | $("nav.navbar.bootsnav ul.nav").find("li.dropdown").off("mouseenter"); 238 | $("nav.navbar.bootsnav ul.nav").find("li.dropdown").off("mouseleave"); 239 | $("nav.navbar.bootsnav ul.nav").find(".title").off("mouseenter"); 240 | $("nav.navbar.bootsnav ul.nav").off("mouseleave"); 241 | $(".navbar-collapse").removeClass("animated"); 242 | 243 | // Enable click event 244 | $("nav.navbar.bootsnav ul.nav").each(function(){ 245 | $(".dropdown-menu", this).addClass("animated"); 246 | $(".dropdown-menu", this).removeClass(getOut); 247 | 248 | // Dropdown Fade Toggle 249 | $("a.dropdown-toggle", this).off('click'); 250 | $("a.dropdown-toggle", this).on('click', function (e) { 251 | e.stopPropagation(); 252 | $(this).closest("li.dropdown").find(".dropdown-menu").first().stop().fadeToggle().toggleClass(getIn); 253 | $(this).closest("li.dropdown").first().toggleClass("on"); 254 | return false; 255 | }); 256 | 257 | // Hidden dropdown action 258 | $('li.dropdown', this).each(function () { 259 | $(this).find(".dropdown-menu").stop().fadeOut(); 260 | $(this).on('hidden.bs.dropdown', function () { 261 | $(this).find(".dropdown-menu").stop().fadeOut(); 262 | }); 263 | return false; 264 | }); 265 | 266 | // Megamenu style 267 | $(".megamenu-fw", this).each(function(){ 268 | $(".col-menu", this).each(function(){ 269 | $(".content", this).addClass("animated"); 270 | $(".content", this).stop().fadeOut(); 271 | $(".title", this).off("click"); 272 | $(".title", this).on("click", function(){ 273 | $(this).closest(".col-menu").find(".content").stop().fadeToggle().addClass(getIn); 274 | $(this).closest(".col-menu").toggleClass("on"); 275 | return false; 276 | }); 277 | 278 | $(".content", this).on("click", function(e){ 279 | e.stopPropagation(); 280 | }); 281 | }); 282 | }); 283 | }); 284 | 285 | // Hidden dropdown 286 | var cleanOpen = function(){ 287 | $('li.dropdown', this).removeClass("on"); 288 | $(".dropdown-menu", this).stop().fadeOut(); 289 | $(".dropdown-menu", this).removeClass(getIn); 290 | $(".col-menu", this).removeClass("on"); 291 | $(".col-menu .content", this).stop().fadeOut(); 292 | $(".col-menu .content", this).removeClass(getIn); 293 | } 294 | 295 | // Hidden om mouse leave 296 | $("nav.navbar.bootsnav").on("mouseleave", function(){ 297 | cleanOpen(); 298 | }); 299 | 300 | // Enable click atribute navigation 301 | $("nav.navbar.bootsnav .attr-nav").each(function(){ 302 | $(".dropdown-menu", this).removeClass("animated"); 303 | $("li.dropdown", this).off("mouseenter"); 304 | $("li.dropdown", this).off("mouseleave"); 305 | $("a.dropdown-toggle", this).off('click'); 306 | $("a.dropdown-toggle", this).on('click', function (e) { 307 | e.stopPropagation(); 308 | $(this).closest("li.dropdown").find(".dropdown-menu").first().stop().fadeToggle(); 309 | $(".navbar-toggle").each(function(){ 310 | $(".fa", this).removeClass("fa-times"); 311 | $(".fa", this).addClass("fa-bars"); 312 | $(".navbar-collapse").removeClass("in"); 313 | $(".navbar-collapse").removeClass("on"); 314 | }); 315 | }); 316 | 317 | $(this).on("mouseleave", function(){ 318 | $(".dropdown-menu", this).stop().fadeOut(); 319 | $("li.dropdown", this).removeClass("on"); 320 | return false; 321 | }); 322 | }); 323 | 324 | // Toggle Bars 325 | $(".navbar-toggle").each(function(){ 326 | $(this).off("click"); 327 | $(this).on("click", function(){ 328 | $(".fa", this).toggleClass("fa-bars"); 329 | $(".fa", this).toggleClass("fa-times"); 330 | cleanOpen(); 331 | }); 332 | }); 333 | 334 | }else if( getWindow > 991 ){ 335 | // Height of scroll navigation sidebar 336 | $(".scroller").css("height", getHeight + "px"); 337 | 338 | // Navbar Sidebar 339 | if( getNav.hasClass("navbar-sidebar")){ 340 | // Hover effect Sidebar Menu 341 | $("nav.navbar.bootsnav ul.nav").each(function(){ 342 | $("a.dropdown-toggle", this).off('click'); 343 | $("a.dropdown-toggle", this).on('click', function (e) { 344 | e.stopPropagation(); 345 | }); 346 | 347 | $(".dropdown-menu", this).addClass("animated"); 348 | $("li.dropdown", this).on("mouseenter", function(){ 349 | $(".dropdown-menu", this).eq(0).removeClass(getOut); 350 | $(".dropdown-menu", this).eq(0).stop().fadeIn().addClass(getIn); 351 | $(this).addClass("on"); 352 | return false; 353 | }); 354 | 355 | $(".col-menu").each(function(){ 356 | $(".content", this).addClass("animated"); 357 | $(".title", this).on("mouseenter", function(){ 358 | $(this).closest(".col-menu").find(".content").stop().fadeIn().addClass(getIn); 359 | $(this).closest(".col-menu").addClass("on"); 360 | return false; 361 | }); 362 | }); 363 | 364 | $(this).on("mouseleave", function(){ 365 | $(".dropdown-menu", this).stop().removeClass(getIn); 366 | $(".dropdown-menu", this).stop().addClass(getOut).fadeOut(); 367 | $(".col-menu", this).find(".content").stop().fadeOut().removeClass(getIn); 368 | $(".col-menu", this).removeClass("on"); 369 | $("li.dropdown", this).removeClass("on"); 370 | return false; 371 | }); 372 | }); 373 | }else{ 374 | // Hover effect Default Menu 375 | $("nav.navbar.bootsnav ul.nav").each(function(){ 376 | $("a.dropdown-toggle", this).off('click'); 377 | $("a.dropdown-toggle", this).on('click', function (e) { 378 | e.stopPropagation(); 379 | }); 380 | 381 | $(".megamenu-fw", this).each(function(){ 382 | $(".title", this).off("click"); 383 | $("a.dropdown-toggle", this).off("click"); 384 | $(".content").removeClass("animated"); 385 | }); 386 | 387 | $(".dropdown-menu", this).addClass("animated"); 388 | $("li.dropdown", this).on("mouseenter", function(){ 389 | $(".dropdown-menu", this).eq(0).removeClass(getOut); 390 | $(".dropdown-menu", this).eq(0).stop().fadeIn().addClass(getIn); 391 | $(this).addClass("on"); 392 | return false; 393 | }); 394 | 395 | $("li.dropdown", this).on("mouseleave", function(){ 396 | $(".dropdown-menu", this).eq(0).removeClass(getIn); 397 | $(".dropdown-menu", this).eq(0).stop().fadeOut().addClass(getOut); 398 | $(this).removeClass("on"); 399 | }); 400 | 401 | $(this).on("mouseleave", function(){ 402 | $(".dropdown-menu", this).removeClass(getIn); 403 | $(".dropdown-menu", this).eq(0).stop().fadeOut().addClass(getOut); 404 | $("li.dropdown", this).removeClass("on"); 405 | return false; 406 | }); 407 | }); 408 | } 409 | 410 | // ------------------------------------------------------------------------------ // 411 | // Hover effect Atribute Navigation 412 | // ------------------------------------------------------------------------------ // 413 | $("nav.navbar.bootsnav .attr-nav").each(function(){ 414 | $("a.dropdown-toggle", this).off('click'); 415 | $("a.dropdown-toggle", this).on('click', function (e) { 416 | e.stopPropagation(); 417 | }); 418 | 419 | $(".dropdown-menu", this).addClass("animated"); 420 | $("li.dropdown", this).on("mouseenter", function(){ 421 | $(".dropdown-menu", this).eq(0).removeClass(getOut); 422 | $(".dropdown-menu", this).eq(0).stop().fadeIn().addClass(getIn); 423 | $(this).addClass("on"); 424 | return false; 425 | }); 426 | 427 | $("li.dropdown", this).on("mouseleave", function(){ 428 | $(".dropdown-menu", this).eq(0).removeClass(getIn); 429 | $(".dropdown-menu", this).eq(0).stop().fadeOut().addClass(getOut); 430 | $(this).removeClass("on"); 431 | }); 432 | 433 | $(this).on("mouseleave", function(){ 434 | $(".dropdown-menu", this).removeClass(getIn); 435 | $(".dropdown-menu", this).eq(0).stop().fadeOut().addClass(getOut); 436 | $("li.dropdown", this).removeClass("on"); 437 | return false; 438 | }); 439 | }); 440 | } 441 | 442 | // ------------------------------------------------------------------------------ // 443 | // Menu Fullscreen 444 | // ------------------------------------------------------------------------------ // 445 | if( getNav.hasClass("navbar-full")){ 446 | var windowHeight = $(window).height(), 447 | windowWidth = $(window).width(); 448 | 449 | $(".nav-full").css("height", windowHeight + "px"); 450 | $(".wrap-full-menu").css("height", windowHeight + "px"); 451 | $(".wrap-full-menu").css("width", windowWidth + "px"); 452 | 453 | $(".navbar-collapse").addClass("animated"); 454 | $(".navbar-toggle").each(function(){ 455 | var getId = $(this).data("target"); 456 | $(this).off("click"); 457 | $(this).on("click", function(e){ 458 | e.preventDefault(); 459 | $(getId).removeClass(getOut); 460 | $(getId).addClass("in"); 461 | $(getId).addClass(getIn); 462 | return false; 463 | }); 464 | 465 | $("li.close-full-menu").on("click", function(e){ 466 | e.preventDefault(); 467 | $(getId).addClass(getOut); 468 | setTimeout(function(){ 469 | $(getId).removeClass("in"); 470 | $(getId).removeClass(getIn); 471 | }, 500); 472 | return false; 473 | }); 474 | }); 475 | } 476 | }, 477 | 478 | // ------------------------------------------------------------------------------ // 479 | // Navbar Sticky 480 | // ------------------------------------------------------------------------------ // 481 | navbarSticky : function(){ 482 | var getNav = $("nav.navbar.bootsnav"), 483 | navSticky = getNav.hasClass("navbar-sticky"); 484 | 485 | if( navSticky ){ 486 | 487 | // Set Height Navigation 488 | var getHeight = getNav.height(); 489 | $(".wrap-sticky").height(getHeight); 490 | 491 | // Windown on scroll 492 | var getOffset = $(".wrap-sticky").offset().top; 493 | $(window).on("scroll", function(){ 494 | var scrollTop = $(window).scrollTop(); 495 | if(scrollTop > getOffset){ 496 | getNav.addClass("sticked"); 497 | }else { 498 | getNav.removeClass("sticked"); 499 | } 500 | }); 501 | } 502 | }, 503 | 504 | // ------------------------------------------------------------------------------ // 505 | // Navbar Scrollspy 506 | // ------------------------------------------------------------------------------ // 507 | navbarScrollspy : function(){ 508 | var navScrollSpy = $(".navbar-scrollspy"), 509 | $body = $('body'), 510 | getNav = $('nav.navbar.bootsnav'), 511 | offset = getNav.outerHeight(); 512 | 513 | if( navScrollSpy.length ){ 514 | $body.scrollspy({target: '.navbar', offset: offset }); 515 | 516 | // Animation Scrollspy 517 | $('.scroll').on('click', function(event) { 518 | event.preventDefault(); 519 | 520 | // Active link 521 | $('.scroll').removeClass("active"); 522 | $(this).addClass("active"); 523 | 524 | // Remove navbar collapse 525 | $(".navbar-collapse").removeClass("in"); 526 | 527 | // Toggle Bars 528 | $(".navbar-toggle").each(function(){ 529 | $(".fa", this).removeClass("fa-times"); 530 | $(".fa", this).addClass("fa-bars"); 531 | }); 532 | 533 | // Scroll 534 | var scrollTop = $(window).scrollTop(), 535 | $anchor = $(this).find('a'), 536 | $section = $($anchor.attr('href')).offset().top, 537 | $window = $(window).width(), 538 | $minusDesktop = getNav.data("minus-value-desktop"), 539 | $minusMobile = getNav.data("minus-value-mobile"), 540 | $speed = getNav.data("speed"); 541 | 542 | if( $window > 992 ){ 543 | var $position = $section - $minusDesktop; 544 | }else{ 545 | var $position = $section - $minusMobile; 546 | } 547 | 548 | $('html, body').stop().animate({ 549 | scrollTop: $position 550 | }, $speed); 551 | }); 552 | 553 | // Activate Navigation 554 | var fixSpy = function() { 555 | var data = $body.data('bs.scrollspy'); 556 | if (data) { 557 | offset = getNav.outerHeight(); 558 | data.options.offset = offset; 559 | $body.data('bs.scrollspy', data); 560 | $body.scrollspy('refresh'); 561 | } 562 | } 563 | 564 | // Activate Navigation on resize 565 | var resizeTimer; 566 | $(window).on('resize', function() { 567 | clearTimeout(resizeTimer); 568 | var resizeTimer = setTimeout(fixSpy, 200); 569 | }); 570 | } 571 | } 572 | }; 573 | 574 | // Initialize 575 | $(document).ready(function(){ 576 | bootsnav.initialize(); 577 | }); 578 | 579 | // Reset on resize 580 | $(window).on("resize", function(){ 581 | bootsnav.hoverDropdown(); 582 | setTimeout(function(){ 583 | bootsnav.navbarSticky(); 584 | }, 500); 585 | 586 | // Toggle Bars 587 | $(".navbar-toggle").each(function(){ 588 | $(".fa", this).removeClass("fa-times"); 589 | $(".fa", this).addClass("fa-bars"); 590 | $(this).removeClass("fixed"); 591 | }); 592 | $(".navbar-collapse").removeClass("in"); 593 | $(".navbar-collapse").removeClass("on"); 594 | $(".navbar-collapse").removeClass("bounceIn"); 595 | }); 596 | 597 | }(jQuery)); 598 | 599 | -------------------------------------------------------------------------------- /browny-v1.0/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.7 (http://getbootstrap.com) 3 | * Copyright 2011-2016 Twitter, Inc. 4 | * Licensed under the MIT license 5 | */ 6 | if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b.target).is(this))return b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.7",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a("#"===f?[]:f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.7",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target).closest(".btn");b.call(d,"toggle"),a(c.target).is('input[type="radio"], input[type="checkbox"]')||(c.preventDefault(),d.is("input,button")?d.trigger("focus"):d.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.7",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));if(!(a>this.$items.length-1||a<0))return this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){if(!this.sliding)return this.slide("next")},c.prototype.prev=function(){if(!this.sliding)return this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.7",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.7",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&jdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth
    ',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);if(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),!c.isInStateTrue())return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-mo.width?"left":"left"==h&&k.left-lg.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;jg.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null,a.$element=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;!e&&/destroy|hide/.test(b)||(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.7",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.7",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b=e[a]&&(void 0===e[a+1]||b .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.7",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return e=a-d&&"bottom"},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); -------------------------------------------------------------------------------- /browny-v1.0/assets/js/custom.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | "use strict"; 3 | 4 | /*================================== 5 | * Author : "ThemeSine" 6 | * Template Name : Khanas HTML Template 7 | * Version : 1.0 8 | ==================================== */ 9 | 10 | 11 | 12 | /*=========== TABLE OF CONTENTS =========== 13 | 1. Scroll To Top 14 | 2. Smooth Scroll spy 15 | 3. Progress-bar 16 | 4. owl carousel 17 | 5. welcome animation support 18 | ======================================*/ 19 | 20 | // 1. Scroll To Top 21 | $(window).on('scroll',function () { 22 | if ($(this).scrollTop() > 600) { 23 | $('.return-to-top').fadeIn(); 24 | } else { 25 | $('.return-to-top').fadeOut(); 26 | } 27 | }); 28 | $('.return-to-top').on('click',function(){ 29 | $('html, body').animate({ 30 | scrollTop: 0 31 | }, 1500); 32 | return false; 33 | }); 34 | 35 | 36 | 37 | // 2. Smooth Scroll spy 38 | 39 | $('.header-area').sticky({ 40 | topSpacing:0 41 | }); 42 | 43 | //============= 44 | 45 | $('li.smooth-menu a').bind("click", function(event) { 46 | event.preventDefault(); 47 | var anchor = $(this); 48 | $('html, body').stop().animate({ 49 | scrollTop: $(anchor.attr('href')).offset().top - 0 50 | }, 1200,'easeInOutExpo'); 51 | }); 52 | 53 | $('body').scrollspy({ 54 | target:'.navbar-collapse', 55 | offset:0 56 | }); 57 | 58 | // 3. Progress-bar 59 | 60 | var dataToggleTooTip = $('[data-toggle="tooltip"]'); 61 | var progressBar = $(".progress-bar"); 62 | if (progressBar.length) { 63 | progressBar.appear(function () { 64 | dataToggleTooTip.tooltip({ 65 | trigger: 'manual' 66 | }).tooltip('show'); 67 | progressBar.each(function () { 68 | var each_bar_width = $(this).attr('aria-valuenow'); 69 | $(this).width(each_bar_width + '%'); 70 | }); 71 | }); 72 | } 73 | 74 | // 4. owl carousel 75 | 76 | // i. client (carousel) 77 | 78 | $('#client').owlCarousel({ 79 | items:7, 80 | loop:true, 81 | smartSpeed: 1000, 82 | autoplay:true, 83 | dots:false, 84 | autoplayHoverPause:true, 85 | responsive:{ 86 | 0:{ 87 | items:2 88 | }, 89 | 415:{ 90 | items:2 91 | }, 92 | 600:{ 93 | items:4 94 | 95 | }, 96 | 1199:{ 97 | items:4 98 | }, 99 | 1200:{ 100 | items:7 101 | } 102 | } 103 | }); 104 | 105 | 106 | $('.play').on('click',function(){ 107 | owl.trigger('play.owl.autoplay',[1000]) 108 | }) 109 | $('.stop').on('click',function(){ 110 | owl.trigger('stop.owl.autoplay') 111 | }) 112 | 113 | 114 | // 5. welcome animation support 115 | 116 | $(window).load(function(){ 117 | $(".header-text h2,.header-text p").removeClass("animated fadeInUp").css({'opacity':'0'}); 118 | $(".header-text a").removeClass("animated fadeInDown").css({'opacity':'0'}); 119 | }); 120 | 121 | $(window).load(function(){ 122 | $(".header-text h2,.header-text p").addClass("animated fadeInUp").css({'opacity':'0'}); 123 | $(".header-text a").addClass("animated fadeInDown").css({'opacity':'0'}); 124 | }); 125 | 126 | }); 127 | -------------------------------------------------------------------------------- /browny-v1.0/assets/js/jquery.appear.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery.appear 3 | * http://code.google.com/p/jquery-appear/ 4 | * 5 | * Copyright (c) 2009 Michael Hixson 6 | * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php) 7 | */ 8 | (function($){$.fn.appear=function(f,o){var s=$.extend({one:true},o);return this.each(function(){var t=$(this);t.appeared=false;if(!f){t.trigger('appear',s.data);return;}var w=$(window);var c=function(){if(!t.is(':visible')){t.appeared=false;return;}var a=w.scrollLeft();var b=w.scrollTop();var o=t.offset();var x=o.left;var y=o.top;if(y+t.height()>=b&&y<=b+w.height()&&x+t.width()>=a&&x<=a+w.width()){if(!t.appeared)t.trigger('appear',s.data);}else{t.appeared=false;}};var m=function(){t.appeared=true;if(s.one){w.unbind('scroll',c);var i=$.inArray(c,$.fn.appear.checks);if(i>=0)$.fn.appear.checks.splice(i,1);}f.apply(this,arguments);};if(s.one)t.one('appear',s.data,m);else t.bind('appear',s.data,m);w.scroll(c);$.fn.appear.checks.push(c);(c)();});};$.extend($.fn.appear,{checks:[],timeout:null,checkAll:function(){var l=$.fn.appear.checks.length;if(l>0)while(l--)($.fn.appear.checks[l])();},run:function(){if($.fn.appear.timeout)clearTimeout($.fn.appear.timeout);$.fn.appear.timeout=setTimeout($.fn.appear.checkAll,20);}});$.each(['append','prepend','after','before','attr','removeAttr','addClass','removeClass','toggleClass','remove','css','show','hide'],function(i,n){var u=$.fn[n];if(u){$.fn[n]=function(){var r=u.apply(this,arguments);$.fn.appear.run();return r;}}});})(jQuery); -------------------------------------------------------------------------------- /browny-v1.0/assets/js/jquery.sticky.js: -------------------------------------------------------------------------------- 1 | // Sticky Plugin v1.0.4 for jQuery 2 | // ============= 3 | // Author: Anthony Garand 4 | // Improvements by German M. Bravo (Kronuz) and Ruud Kamphuis (ruudk) 5 | // Improvements by Leonardo C. Daronco (daronco) 6 | // Created: 02/14/2011 7 | // Date: 07/20/2015 8 | // Website: http://stickyjs.com/ 9 | // Description: Makes an element on the page stick on the screen as you scroll 10 | // It will only set the 'top' and 'position' of your element, you 11 | // might need to adjust the width in some cases. 12 | 13 | (function (factory) { 14 | if (typeof define === 'function' && define.amd) { 15 | // AMD. Register as an anonymous module. 16 | define(['jquery'], factory); 17 | } else if (typeof module === 'object' && module.exports) { 18 | // Node/CommonJS 19 | module.exports = factory(require('jquery')); 20 | } else { 21 | // Browser globals 22 | factory(jQuery); 23 | } 24 | }(function ($) { 25 | var slice = Array.prototype.slice; // save ref to original slice() 26 | var splice = Array.prototype.splice; // save ref to original slice() 27 | 28 | var defaults = { 29 | topSpacing: 0, 30 | bottomSpacing: 0, 31 | className: 'is-sticky', 32 | wrapperClassName: 'sticky-wrapper', 33 | center: false, 34 | getWidthFrom: '', 35 | widthFromWrapper: true, // works only when .getWidthFrom is empty 36 | responsiveWidth: false, 37 | zIndex: 'inherit' 38 | }, 39 | $window = $(window), 40 | $document = $(document), 41 | sticked = [], 42 | windowHeight = $window.height(), 43 | scroller = function() { 44 | var scrollTop = $window.scrollTop(), 45 | documentHeight = $document.height(), 46 | dwh = documentHeight - windowHeight, 47 | extra = (scrollTop > dwh) ? dwh - scrollTop : 0; 48 | 49 | for (var i = 0, l = sticked.length; i < l; i++) { 50 | var s = sticked[i], 51 | elementTop = s.stickyWrapper.offset().top, 52 | etse = elementTop - s.topSpacing - extra; 53 | 54 | //update height in case of dynamic content 55 | s.stickyWrapper.css('height', s.stickyElement.outerHeight()); 56 | 57 | if (scrollTop <= etse) { 58 | if (s.currentTop !== null) { 59 | s.stickyElement 60 | .css({ 61 | 'width': '', 62 | 'position': '', 63 | 'top': '', 64 | 'z-index': '' 65 | }); 66 | s.stickyElement.parent().removeClass(s.className); 67 | s.stickyElement.trigger('sticky-end', [s]); 68 | s.currentTop = null; 69 | } 70 | } 71 | else { 72 | var newTop = documentHeight - s.stickyElement.outerHeight() 73 | - s.topSpacing - s.bottomSpacing - scrollTop - extra; 74 | if (newTop < 0) { 75 | newTop = newTop + s.topSpacing; 76 | } else { 77 | newTop = s.topSpacing; 78 | } 79 | if (s.currentTop !== newTop) { 80 | var newWidth; 81 | if (s.getWidthFrom) { 82 | padding = s.stickyElement.innerWidth() - s.stickyElement.width(); 83 | newWidth = $(s.getWidthFrom).width() - padding || null; 84 | } else if (s.widthFromWrapper) { 85 | newWidth = s.stickyWrapper.width(); 86 | } 87 | if (newWidth == null) { 88 | newWidth = s.stickyElement.width(); 89 | } 90 | s.stickyElement 91 | .css('width', newWidth) 92 | .css('position', 'fixed') 93 | .css('top', newTop) 94 | .css('z-index', s.zIndex); 95 | 96 | s.stickyElement.parent().addClass(s.className); 97 | 98 | if (s.currentTop === null) { 99 | s.stickyElement.trigger('sticky-start', [s]); 100 | } else { 101 | // sticky is started but it have to be repositioned 102 | s.stickyElement.trigger('sticky-update', [s]); 103 | } 104 | 105 | if (s.currentTop === s.topSpacing && s.currentTop > newTop || s.currentTop === null && newTop < s.topSpacing) { 106 | // just reached bottom || just started to stick but bottom is already reached 107 | s.stickyElement.trigger('sticky-bottom-reached', [s]); 108 | } else if(s.currentTop !== null && newTop === s.topSpacing && s.currentTop < newTop) { 109 | // sticky is started && sticked at topSpacing && overflowing from top just finished 110 | s.stickyElement.trigger('sticky-bottom-unreached', [s]); 111 | } 112 | 113 | s.currentTop = newTop; 114 | } 115 | 116 | // Check if sticky has reached end of container and stop sticking 117 | var stickyWrapperContainer = s.stickyWrapper.parent(); 118 | var unstick = (s.stickyElement.offset().top + s.stickyElement.outerHeight() >= stickyWrapperContainer.offset().top + stickyWrapperContainer.outerHeight()) && (s.stickyElement.offset().top <= s.topSpacing); 119 | 120 | if( unstick ) { 121 | s.stickyElement 122 | .css('position', 'absolute') 123 | .css('top', '') 124 | .css('bottom', 0) 125 | .css('z-index', ''); 126 | } else { 127 | s.stickyElement 128 | .css('position', 'fixed') 129 | .css('top', newTop) 130 | .css('bottom', '') 131 | .css('z-index', s.zIndex); 132 | } 133 | } 134 | } 135 | }, 136 | resizer = function() { 137 | windowHeight = $window.height(); 138 | 139 | for (var i = 0, l = sticked.length; i < l; i++) { 140 | var s = sticked[i]; 141 | var newWidth = null; 142 | if (s.getWidthFrom) { 143 | if (s.responsiveWidth) { 144 | newWidth = $(s.getWidthFrom).width(); 145 | } 146 | } else if(s.widthFromWrapper) { 147 | newWidth = s.stickyWrapper.width(); 148 | } 149 | if (newWidth != null) { 150 | s.stickyElement.css('width', newWidth); 151 | } 152 | } 153 | }, 154 | methods = { 155 | init: function(options) { 156 | return this.each(function() { 157 | var o = $.extend({}, defaults, options); 158 | var stickyElement = $(this); 159 | 160 | var stickyId = stickyElement.attr('id'); 161 | var wrapperId = stickyId ? stickyId + '-' + defaults.wrapperClassName : defaults.wrapperClassName; 162 | var wrapper = $('
    ') 163 | .attr('id', wrapperId) 164 | .addClass(o.wrapperClassName); 165 | 166 | stickyElement.wrapAll(function() { 167 | if ($(this).parent("#" + wrapperId).length == 0) { 168 | return wrapper; 169 | } 170 | }); 171 | 172 | var stickyWrapper = stickyElement.parent(); 173 | 174 | if (o.center) { 175 | stickyWrapper.css({width:stickyElement.outerWidth(),marginLeft:"auto",marginRight:"auto"}); 176 | } 177 | 178 | if (stickyElement.css("float") === "right") { 179 | stickyElement.css({"float":"none"}).parent().css({"float":"right"}); 180 | } 181 | 182 | o.stickyElement = stickyElement; 183 | o.stickyWrapper = stickyWrapper; 184 | o.currentTop = null; 185 | 186 | sticked.push(o); 187 | 188 | methods.setWrapperHeight(this); 189 | methods.setupChangeListeners(this); 190 | }); 191 | }, 192 | 193 | setWrapperHeight: function(stickyElement) { 194 | var element = $(stickyElement); 195 | var stickyWrapper = element.parent(); 196 | if (stickyWrapper) { 197 | stickyWrapper.css('height', element.outerHeight()); 198 | } 199 | }, 200 | 201 | setupChangeListeners: function(stickyElement) { 202 | if (window.MutationObserver) { 203 | var mutationObserver = new window.MutationObserver(function(mutations) { 204 | if (mutations[0].addedNodes.length || mutations[0].removedNodes.length) { 205 | methods.setWrapperHeight(stickyElement); 206 | } 207 | }); 208 | mutationObserver.observe(stickyElement, {subtree: true, childList: true}); 209 | } else { 210 | if (window.addEventListener) { 211 | stickyElement.addEventListener('DOMNodeInserted', function() { 212 | methods.setWrapperHeight(stickyElement); 213 | }, false); 214 | stickyElement.addEventListener('DOMNodeRemoved', function() { 215 | methods.setWrapperHeight(stickyElement); 216 | }, false); 217 | } else if (window.attachEvent) { 218 | stickyElement.attachEvent('onDOMNodeInserted', function() { 219 | methods.setWrapperHeight(stickyElement); 220 | }); 221 | stickyElement.attachEvent('onDOMNodeRemoved', function() { 222 | methods.setWrapperHeight(stickyElement); 223 | }); 224 | } 225 | } 226 | }, 227 | update: scroller, 228 | unstick: function(options) { 229 | return this.each(function() { 230 | var that = this; 231 | var unstickyElement = $(that); 232 | 233 | var removeIdx = -1; 234 | var i = sticked.length; 235 | while (i-- > 0) { 236 | if (sticked[i].stickyElement.get(0) === that) { 237 | splice.call(sticked,i,1); 238 | removeIdx = i; 239 | } 240 | } 241 | if(removeIdx !== -1) { 242 | unstickyElement.unwrap(); 243 | unstickyElement 244 | .css({ 245 | 'width': '', 246 | 'position': '', 247 | 'top': '', 248 | 'float': '', 249 | 'z-index': '' 250 | }) 251 | ; 252 | } 253 | }); 254 | } 255 | }; 256 | 257 | // should be more efficient than using $window.scroll(scroller) and $window.resize(resizer): 258 | if (window.addEventListener) { 259 | window.addEventListener('scroll', scroller, false); 260 | window.addEventListener('resize', resizer, false); 261 | } else if (window.attachEvent) { 262 | window.attachEvent('onscroll', scroller); 263 | window.attachEvent('onresize', resizer); 264 | } 265 | 266 | $.fn.sticky = function(method) { 267 | if (methods[method]) { 268 | return methods[method].apply(this, slice.call(arguments, 1)); 269 | } else if (typeof method === 'object' || !method ) { 270 | return methods.init.apply( this, arguments ); 271 | } else { 272 | $.error('Method ' + method + ' does not exist on jQuery.sticky'); 273 | } 274 | }; 275 | 276 | $.fn.unstick = function(method) { 277 | if (methods[method]) { 278 | return methods[method].apply(this, slice.call(arguments, 1)); 279 | } else if (typeof method === 'object' || !method ) { 280 | return methods.unstick.apply( this, arguments ); 281 | } else { 282 | $.error('Method ' + method + ' does not exist on jQuery.sticky'); 283 | } 284 | }; 285 | $(function() { 286 | setTimeout(scroller, 0); 287 | }); 288 | })); 289 | -------------------------------------------------------------------------------- /browny-v1.0/assets/js/progressbar.js: -------------------------------------------------------------------------------- 1 | // ProgressBar.js 1.0.1 2 | // https://kimmobrunfeldt.github.io/progressbar.js 3 | // License: MIT 4 | 5 | !function(a){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=a();else if("function"==typeof define&&define.amd)define([],a);else{var b;b="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,b.ProgressBar=a()}}(function(){var a;return function b(a,c,d){function e(g,h){if(!c[g]){if(!a[g]){var i="function"==typeof require&&require;if(!h&&i)return i(g,!0);if(f)return f(g,!0);var j=new Error("Cannot find module '"+g+"'");throw j.code="MODULE_NOT_FOUND",j}var k=c[g]={exports:{}};a[g][0].call(k.exports,function(b){var c=a[g][1][b];return e(c?c:b)},k,k.exports,b,a,c,d)}return c[g].exports}for(var f="function"==typeof require&&require,g=0;ga?0:(a-f)/e;for(h in b)b.hasOwnProperty(h)&&(i=g[h],k="function"==typeof i?i:o[i],b[h]=j(c[h],d[h],k,l));return b}function j(a,b,c,d){return a+(b-a)*c(d)}function k(a,b){var c=n.prototype.filter,d=a._filterArgs;f(c,function(e){"undefined"!=typeof c[e][b]&&c[e][b].apply(a,d)})}function l(a,b,c,d,e,f,g,h,j,l,m){v=b+c+d,w=Math.min(m||u(),v),x=w>=v,y=d-(v-w),a.isPlaying()&&(x?(j(g,a._attachment,y),a.stop(!0)):(a._scheduleId=l(a._timeoutHandler,s),k(a,"beforeTween"),b+c>w?i(1,e,f,g,1,1,h):i(w,e,f,g,d,b+c,h),k(a,"afterTween"),j(e,a._attachment,y)))}function m(a,b){var c={},d=typeof b;return"string"===d||"function"===d?f(a,function(a){c[a]=b}):f(a,function(a){c[a]||(c[a]=b[a]||q)}),c}function n(a,b){this._currentState=a||{},this._configured=!1,this._scheduleFunction=p,"undefined"!=typeof b&&this.setConfig(b)}var o,p,q="linear",r=500,s=1e3/60,t=Date.now?Date.now:function(){return+new Date},u="undefined"!=typeof SHIFTY_DEBUG_NOW?SHIFTY_DEBUG_NOW:t;p="undefined"!=typeof window?window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||window.mozCancelRequestAnimationFrame&&window.mozRequestAnimationFrame||setTimeout:setTimeout;var v,w,x,y;return n.prototype.tween=function(a){return this._isTweening?this:(void 0===a&&this._configured||this.setConfig(a),this._timestamp=u(),this._start(this.get(),this._attachment),this.resume())},n.prototype.setConfig=function(a){a=a||{},this._configured=!0,this._attachment=a.attachment,this._pausedAtTime=null,this._scheduleId=null,this._delay=a.delay||0,this._start=a.start||e,this._step=a.step||e,this._finish=a.finish||e,this._duration=a.duration||r,this._currentState=g({},a.from)||this.get(),this._originalState=this.get(),this._targetState=g({},a.to)||this.get();var b=this;this._timeoutHandler=function(){l(b,b._timestamp,b._delay,b._duration,b._currentState,b._originalState,b._targetState,b._easing,b._step,b._scheduleFunction)};var c=this._currentState,d=this._targetState;return h(d,c),this._easing=m(c,a.easing||q),this._filterArgs=[c,this._originalState,d,this._easing],k(this,"tweenCreated"),this},n.prototype.get=function(){return g({},this._currentState)},n.prototype.set=function(a){this._currentState=a},n.prototype.pause=function(){return this._pausedAtTime=u(),this._isPaused=!0,this},n.prototype.resume=function(){return this._isPaused&&(this._timestamp+=u()-this._pausedAtTime),this._isPaused=!1,this._isTweening=!0,this._timeoutHandler(),this},n.prototype.seek=function(a){a=Math.max(a,0);var b=u();return this._timestamp+a===0?this:(this._timestamp=b-a,this.isPlaying()||(this._isTweening=!0,this._isPaused=!1,l(this,this._timestamp,this._delay,this._duration,this._currentState,this._originalState,this._targetState,this._easing,this._step,this._scheduleFunction,b),this.pause()),this)},n.prototype.stop=function(a){return this._isTweening=!1,this._isPaused=!1,this._timeoutHandler=e,(b.cancelAnimationFrame||b.webkitCancelAnimationFrame||b.oCancelAnimationFrame||b.msCancelAnimationFrame||b.mozCancelRequestAnimationFrame||b.clearTimeout)(this._scheduleId),a&&(k(this,"beforeTween"),i(1,this._currentState,this._originalState,this._targetState,1,0,this._easing),k(this,"afterTween"),k(this,"afterTweenEnd"),this._finish.call(this,this._currentState,this._attachment)),this},n.prototype.isPlaying=function(){return this._isTweening&&!this._isPaused},n.prototype.setScheduleFunction=function(a){this._scheduleFunction=a},n.prototype.dispose=function(){var a;for(a in this)this.hasOwnProperty(a)&&delete this[a]},n.prototype.filter={},n.prototype.formula={linear:function(a){return a}},o=n.prototype.formula,g(n,{now:u,each:f,tweenProps:i,tweenProp:j,applyFilter:k,shallowCopy:g,defaults:h,composeEasingObject:m}),"function"==typeof SHIFTY_DEBUG_NOW&&(b.timeoutHandler=l),"object"==typeof d?c.exports=n:"function"==typeof a&&a.amd?a(function(){return n}):"undefined"==typeof b.Tweenable&&(b.Tweenable=n),n}();!function(){e.shallowCopy(e.prototype.formula,{easeInQuad:function(a){return Math.pow(a,2)},easeOutQuad:function(a){return-(Math.pow(a-1,2)-1)},easeInOutQuad:function(a){return(a/=.5)<1?.5*Math.pow(a,2):-.5*((a-=2)*a-2)},easeInCubic:function(a){return Math.pow(a,3)},easeOutCubic:function(a){return Math.pow(a-1,3)+1},easeInOutCubic:function(a){return(a/=.5)<1?.5*Math.pow(a,3):.5*(Math.pow(a-2,3)+2)},easeInQuart:function(a){return Math.pow(a,4)},easeOutQuart:function(a){return-(Math.pow(a-1,4)-1)},easeInOutQuart:function(a){return(a/=.5)<1?.5*Math.pow(a,4):-.5*((a-=2)*Math.pow(a,3)-2)},easeInQuint:function(a){return Math.pow(a,5)},easeOutQuint:function(a){return Math.pow(a-1,5)+1},easeInOutQuint:function(a){return(a/=.5)<1?.5*Math.pow(a,5):.5*(Math.pow(a-2,5)+2)},easeInSine:function(a){return-Math.cos(a*(Math.PI/2))+1},easeOutSine:function(a){return Math.sin(a*(Math.PI/2))},easeInOutSine:function(a){return-.5*(Math.cos(Math.PI*a)-1)},easeInExpo:function(a){return 0===a?0:Math.pow(2,10*(a-1))},easeOutExpo:function(a){return 1===a?1:-Math.pow(2,-10*a)+1},easeInOutExpo:function(a){return 0===a?0:1===a?1:(a/=.5)<1?.5*Math.pow(2,10*(a-1)):.5*(-Math.pow(2,-10*--a)+2)},easeInCirc:function(a){return-(Math.sqrt(1-a*a)-1)},easeOutCirc:function(a){return Math.sqrt(1-Math.pow(a-1,2))},easeInOutCirc:function(a){return(a/=.5)<1?-.5*(Math.sqrt(1-a*a)-1):.5*(Math.sqrt(1-(a-=2)*a)+1)},easeOutBounce:function(a){return 1/2.75>a?7.5625*a*a:2/2.75>a?7.5625*(a-=1.5/2.75)*a+.75:2.5/2.75>a?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375},easeInBack:function(a){var b=1.70158;return a*a*((b+1)*a-b)},easeOutBack:function(a){var b=1.70158;return(a-=1)*a*((b+1)*a+b)+1},easeInOutBack:function(a){var b=1.70158;return(a/=.5)<1?.5*(a*a*(((b*=1.525)+1)*a-b)):.5*((a-=2)*a*(((b*=1.525)+1)*a+b)+2)},elastic:function(a){return-1*Math.pow(4,-8*a)*Math.sin((6*a-1)*(2*Math.PI)/2)+1},swingFromTo:function(a){var b=1.70158;return(a/=.5)<1?.5*(a*a*(((b*=1.525)+1)*a-b)):.5*((a-=2)*a*(((b*=1.525)+1)*a+b)+2)},swingFrom:function(a){var b=1.70158;return a*a*((b+1)*a-b)},swingTo:function(a){var b=1.70158;return(a-=1)*a*((b+1)*a+b)+1},bounce:function(a){return 1/2.75>a?7.5625*a*a:2/2.75>a?7.5625*(a-=1.5/2.75)*a+.75:2.5/2.75>a?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375},bouncePast:function(a){return 1/2.75>a?7.5625*a*a:2/2.75>a?2-(7.5625*(a-=1.5/2.75)*a+.75):2.5/2.75>a?2-(7.5625*(a-=2.25/2.75)*a+.9375):2-(7.5625*(a-=2.625/2.75)*a+.984375)},easeFromTo:function(a){return(a/=.5)<1?.5*Math.pow(a,4):-.5*((a-=2)*Math.pow(a,3)-2)},easeFrom:function(a){return Math.pow(a,4)},easeTo:function(a){return Math.pow(a,.25)}})}(),function(){function a(a,b,c,d,e,f){function g(a){return((n*a+o)*a+p)*a}function h(a){return((q*a+r)*a+s)*a}function i(a){return(3*n*a+2*o)*a+p}function j(a){return 1/(200*a)}function k(a,b){return h(m(a,b))}function l(a){return a>=0?a:0-a}function m(a,b){var c,d,e,f,h,j;for(e=a,j=0;8>j;j++){if(f=g(e)-a,l(f)e)return c;if(e>d)return d;for(;d>c;){if(f=g(e),l(f-a)f?c=e:d=e,e=.5*(d-c)+c}return e}var n=0,o=0,p=0,q=0,r=0,s=0;return p=3*b,o=3*(d-b)-p,n=1-p-o,s=3*c,r=3*(e-c)-s,q=1-s-r,k(a,j(f))}function b(b,c,d,e){return function(f){return a(f,b,c,d,e,1)}}e.setBezierFunction=function(a,c,d,f,g){var h=b(c,d,f,g);return h.displayName=a,h.x1=c,h.y1=d,h.x2=f,h.y2=g,e.prototype.formula[a]=h},e.unsetBezierFunction=function(a){delete e.prototype.formula[a]}}(),function(){function a(a,b,c,d,f,g){return e.tweenProps(d,b,a,c,1,g,f)}var b=new e;b._filterArgs=[],e.interpolate=function(c,d,f,g,h){var i=e.shallowCopy({},c),j=h||0,k=e.composeEasingObject(c,g||"linear");b.set({});var l=b._filterArgs;l.length=0,l[0]=i,l[1]=c,l[2]=d,l[3]=k,e.applyFilter(b,"tweenCreated"),e.applyFilter(b,"beforeTween");var m=a(c,i,d,f,k,j);return e.applyFilter(b,"afterTween"),m}}(),function(a){function b(a,b){var c,d=[],e=a.length;for(c=0;e>c;c++)d.push("_"+b+"_"+c);return d}function c(a){var b=a.match(v);return b?(1===b.length||a[0].match(u))&&b.unshift(""):b=["",""],b.join(A)}function d(b){a.each(b,function(a){var c=b[a];"string"==typeof c&&c.match(z)&&(b[a]=e(c))})}function e(a){return i(z,a,f)}function f(a){var b=g(a);return"rgb("+b[0]+","+b[1]+","+b[2]+")"}function g(a){return a=a.replace(/#/,""),3===a.length&&(a=a.split(""),a=a[0]+a[0]+a[1]+a[1]+a[2]+a[2]),B[0]=h(a.substr(0,2)),B[1]=h(a.substr(2,2)),B[2]=h(a.substr(4,2)),B}function h(a){return parseInt(a,16)}function i(a,b,c){var d=b.match(a),e=b.replace(a,A);if(d)for(var f,g=d.length,h=0;g>h;h++)f=d.shift(),e=e.replace(A,c(f));return e}function j(a){return i(x,a,k)}function k(a){for(var b=a.match(w),c=b.length,d=a.match(y)[0],e=0;c>e;e++)d+=parseInt(b[e],10)+",";return d=d.slice(0,-1)+")"}function l(d){var e={};return a.each(d,function(a){var f=d[a];if("string"==typeof f){var g=r(f);e[a]={formatString:c(f),chunkNames:b(g,a)}}}),e}function m(b,c){a.each(c,function(a){for(var d=b[a],e=r(d),f=e.length,g=0;f>g;g++)b[c[a].chunkNames[g]]=+e[g];delete b[a]})}function n(b,c){a.each(c,function(a){var d=b[a],e=o(b,c[a].chunkNames),f=p(e,c[a].chunkNames);d=q(c[a].formatString,f),b[a]=j(d)})}function o(a,b){for(var c,d={},e=b.length,f=0;e>f;f++)c=b[f],d[c]=a[c],delete a[c];return d}function p(a,b){C.length=0;for(var c=b.length,d=0;c>d;d++)C.push(a[b[d]]);return C}function q(a,b){for(var c=a,d=b.length,e=0;d>e;e++)c=c.replace(A,+b[e].toFixed(4));return c}function r(a){return a.match(w)}function s(b,c){a.each(c,function(a){var d,e=c[a],f=e.chunkNames,g=f.length,h=b[a];if("string"==typeof h){var i=h.split(" "),j=i[i.length-1];for(d=0;g>d;d++)b[f[d]]=i[d]||j}else for(d=0;g>d;d++)b[f[d]]=h;delete b[a]})}function t(b,c){a.each(c,function(a){var d=c[a],e=d.chunkNames,f=e.length,g=b[e[0]],h=typeof g;if("string"===h){for(var i="",j=0;f>j;j++)i+=" "+b[e[j]],delete b[e[j]];b[a]=i.substr(1)}else b[a]=g})}var u=/(\d|\-|\.)/,v=/([^\-0-9\.]+)/g,w=/[0-9.\-]+/g,x=new RegExp("rgb\\("+w.source+/,\s*/.source+w.source+/,\s*/.source+w.source+"\\)","g"),y=/^.*\(/,z=/#([0-9]|[a-f]){3,6}/gi,A="VAL",B=[],C=[];a.prototype.filter.token={tweenCreated:function(a,b,c,e){d(a),d(b),d(c),this._tokenData=l(a)},beforeTween:function(a,b,c,d){s(d,this._tokenData),m(a,this._tokenData),m(b,this._tokenData),m(c,this._tokenData)},afterTween:function(a,b,c,d){n(a,this._tokenData),n(b,this._tokenData),n(c,this._tokenData),t(d,this._tokenData)}}}(e)}).call(null)},{}],2:[function(a,b,c){var d=a("./shape"),e=a("./utils"),f=function(a,b){this._pathTemplate="M 50,50 m 0,-{radius} a {radius},{radius} 0 1 1 0,{2radius} a {radius},{radius} 0 1 1 0,-{2radius}",this.containerAspectRatio=1,d.apply(this,arguments)};f.prototype=new d,f.prototype.constructor=f,f.prototype._pathString=function(a){var b=a.strokeWidth;a.trailWidth&&a.trailWidth>a.strokeWidth&&(b=a.trailWidth);var c=50-b/2;return e.render(this._pathTemplate,{radius:c,"2radius":2*c})},f.prototype._trailString=function(a){return this._pathString(a)},b.exports=f},{"./shape":7,"./utils":8}],3:[function(a,b,c){var d=a("./shape"),e=a("./utils"),f=function(a,b){this._pathTemplate="M 0,{center} L 100,{center}",d.apply(this,arguments)};f.prototype=new d,f.prototype.constructor=f,f.prototype._initializeSvg=function(a,b){a.setAttribute("viewBox","0 0 100 "+b.strokeWidth),a.setAttribute("preserveAspectRatio","none")},f.prototype._pathString=function(a){return e.render(this._pathTemplate,{center:a.strokeWidth/2})},f.prototype._trailString=function(a){return this._pathString(a)},b.exports=f},{"./shape":7,"./utils":8}],4:[function(a,b,c){b.exports={Line:a("./line"),Circle:a("./circle"),SemiCircle:a("./semicircle"),Path:a("./path"),Shape:a("./shape"),utils:a("./utils")}},{"./circle":2,"./line":3,"./path":5,"./semicircle":6,"./shape":7,"./utils":8}],5:[function(a,b,c){var d=a("shifty"),e=a("./utils"),f={easeIn:"easeInCubic",easeOut:"easeOutCubic",easeInOut:"easeInOutCubic"},g=function h(a,b){if(!(this instanceof h))throw new Error("Constructor was called without new keyword");b=e.extend({duration:800,easing:"linear",from:{},to:{},step:function(){}},b);var c;c=e.isString(a)?document.querySelector(a):a,this.path=c,this._opts=b,this._tweenable=null;var d=this.path.getTotalLength();this.path.style.strokeDasharray=d+" "+d,this.set(0)};g.prototype.value=function(){var a=this._getComputedDashOffset(),b=this.path.getTotalLength(),c=1-a/b;return parseFloat(c.toFixed(6),10)},g.prototype.set=function(a){this.stop(),this.path.style.strokeDashoffset=this._progressToOffset(a);var b=this._opts.step;if(e.isFunction(b)){var c=this._easing(this._opts.easing),d=this._calculateTo(a,c),f=this._opts.shape||this;b(d,f,this._opts.attachment)}},g.prototype.stop=function(){this._stopTween(),this.path.style.strokeDashoffset=this._getComputedDashOffset()},g.prototype.animate=function(a,b,c){b=b||{},e.isFunction(b)&&(c=b,b={});var f=e.extend({},b),g=e.extend({},this._opts);b=e.extend(g,b);var h=this._easing(b.easing),i=this._resolveFromAndTo(a,h,f);this.stop(),this.path.getBoundingClientRect();var j=this._getComputedDashOffset(),k=this._progressToOffset(a),l=this;this._tweenable=new d,this._tweenable.tween({from:e.extend({offset:j},i.from),to:e.extend({offset:k},i.to),duration:b.duration,easing:h,step:function(a){l.path.style.strokeDashoffset=a.offset;var c=b.shape||l;b.step(a,c,b.attachment)},finish:function(a){e.isFunction(c)&&c()}})},g.prototype._getComputedDashOffset=function(){var a=window.getComputedStyle(this.path,null);return parseFloat(a.getPropertyValue("stroke-dashoffset"),10)},g.prototype._progressToOffset=function(a){var b=this.path.getTotalLength();return b-a*b},g.prototype._resolveFromAndTo=function(a,b,c){return c.from&&c.to?{from:c.from,to:c.to}:{from:this._calculateFrom(b),to:this._calculateTo(a,b)}},g.prototype._calculateFrom=function(a){return d.interpolate(this._opts.from,this._opts.to,this.value(),a)},g.prototype._calculateTo=function(a,b){return d.interpolate(this._opts.from,this._opts.to,a,b)},g.prototype._stopTween=function(){null!==this._tweenable&&(this._tweenable.stop(),this._tweenable=null)},g.prototype._easing=function(a){return f.hasOwnProperty(a)?f[a]:a},b.exports=g},{"./utils":8,shifty:1}],6:[function(a,b,c){var d=a("./shape"),e=a("./circle"),f=a("./utils"),g=function(a,b){this._pathTemplate="M 50,50 m -{radius},0 a {radius},{radius} 0 1 1 {2radius},0",this.containerAspectRatio=2,d.apply(this,arguments)};g.prototype=new d,g.prototype.constructor=g,g.prototype._initializeSvg=function(a,b){a.setAttribute("viewBox","0 0 100 50")},g.prototype._initializeTextContainer=function(a,b,c){a.text.style&&(c.style.top="auto",c.style.bottom="0",a.text.alignToBottom?f.setStyle(c,"transform","translate(-50%, 0)"):f.setStyle(c,"transform","translate(-50%, 50%)"))},g.prototype._pathString=e.prototype._pathString,g.prototype._trailString=e.prototype._trailString,b.exports=g},{"./circle":2,"./shape":7,"./utils":8}],7:[function(a,b,c){var d=a("./path"),e=a("./utils"),f="Object is destroyed",g=function h(a,b){if(!(this instanceof h))throw new Error("Constructor was called without new keyword");if(0!==arguments.length){this._opts=e.extend({color:"#555",strokeWidth:1,trailColor:null,trailWidth:null,fill:null,text:{style:{color:null,position:"absolute",left:"50%",top:"50%",padding:0,margin:0,transform:{prefix:!0,value:"translate(-50%, -50%)"}},autoStyleContainer:!0,alignToBottom:!0,value:null,className:"progressbar-text"},svgStyle:{display:"block",width:"100%"},warnings:!1},b,!0),e.isObject(b)&&void 0!==b.svgStyle&&(this._opts.svgStyle=b.svgStyle),e.isObject(b)&&e.isObject(b.text)&&void 0!==b.text.style&&(this._opts.text.style=b.text.style);var c,f=this._createSvgView(this._opts);if(c=e.isString(a)?document.querySelector(a):a,!c)throw new Error("Container does not exist: "+a);this._container=c,this._container.appendChild(f.svg),this._opts.warnings&&this._warnContainerAspectRatio(this._container),this._opts.svgStyle&&e.setStyles(f.svg,this._opts.svgStyle),this.svg=f.svg,this.path=f.path,this.trail=f.trail,this.text=null;var g=e.extend({attachment:void 0,shape:this},this._opts);this._progressPath=new d(f.path,g),e.isObject(this._opts.text)&&null!==this._opts.text.value&&this.setText(this._opts.text.value)}};g.prototype.animate=function(a,b,c){if(null===this._progressPath)throw new Error(f);this._progressPath.animate(a,b,c)},g.prototype.stop=function(){if(null===this._progressPath)throw new Error(f);void 0!==this._progressPath&&this._progressPath.stop()},g.prototype.destroy=function(){if(null===this._progressPath)throw new Error(f);this.stop(),this.svg.parentNode.removeChild(this.svg),this.svg=null,this.path=null,this.trail=null,this._progressPath=null,null!==this.text&&(this.text.parentNode.removeChild(this.text),this.text=null)},g.prototype.set=function(a){if(null===this._progressPath)throw new Error(f);this._progressPath.set(a)},g.prototype.value=function(){if(null===this._progressPath)throw new Error(f);return void 0===this._progressPath?0:this._progressPath.value()},g.prototype.setText=function(a){if(null===this._progressPath)throw new Error(f);null===this.text&&(this.text=this._createTextContainer(this._opts,this._container),this._container.appendChild(this.text)),e.isObject(a)?(e.removeChildren(this.text),this.text.appendChild(a)):this.text.innerHTML=a},g.prototype._createSvgView=function(a){var b=document.createElementNS("http://www.w3.org/2000/svg","svg");this._initializeSvg(b,a);var c=null;(a.trailColor||a.trailWidth)&&(c=this._createTrail(a),b.appendChild(c));var d=this._createPath(a);return b.appendChild(d),{svg:b,path:d,trail:c}},g.prototype._initializeSvg=function(a,b){a.setAttribute("viewBox","0 0 100 100")},g.prototype._createPath=function(a){var b=this._pathString(a);return this._createPathElement(b,a)},g.prototype._createTrail=function(a){var b=this._trailString(a),c=e.extend({},a);return c.trailColor||(c.trailColor="#eee"),c.trailWidth||(c.trailWidth=c.strokeWidth),c.color=c.trailColor,c.strokeWidth=c.trailWidth,c.fill=null,this._createPathElement(b,c)},g.prototype._createPathElement=function(a,b){var c=document.createElementNS("http://www.w3.org/2000/svg","path");return c.setAttribute("d",a),c.setAttribute("stroke",b.color),c.setAttribute("stroke-width",b.strokeWidth),b.fill?c.setAttribute("fill",b.fill):c.setAttribute("fill-opacity","0"),c},g.prototype._createTextContainer=function(a,b){var c=document.createElement("div");c.className=a.text.className;var d=a.text.style;return d&&(a.text.autoStyleContainer&&(b.style.position="relative"),e.setStyles(c,d),d.color||(c.style.color=a.color)),this._initializeTextContainer(a,b,c),c},g.prototype._initializeTextContainer=function(a,b,c){},g.prototype._pathString=function(a){throw new Error("Override this function for each progress bar")},g.prototype._trailString=function(a){throw new Error("Override this function for each progress bar")},g.prototype._warnContainerAspectRatio=function(a){if(this.containerAspectRatio){var b=window.getComputedStyle(a,null),c=parseFloat(b.getPropertyValue("width"),10),d=parseFloat(b.getPropertyValue("height"),10);e.floatEquals(this.containerAspectRatio,c/d)||(console.warn("Incorrect aspect ratio of container","#"+a.id,"detected:",b.getPropertyValue("width")+"(width)","/",b.getPropertyValue("height")+"(height)","=",c/d),console.warn("Aspect ratio of should be",this.containerAspectRatio))}},b.exports=g},{"./path":5,"./utils":8}],8:[function(a,b,c){function d(a,b,c){a=a||{},b=b||{},c=c||!1;for(var e in b)if(b.hasOwnProperty(e)){var f=a[e],g=b[e];c&&l(f)&&l(g)?a[e]=d(f,g,c):a[e]=g}return a}function e(a,b){var c=a;for(var d in b)if(b.hasOwnProperty(d)){var e=b[d],f="\\{"+d+"\\}",g=new RegExp(f,"g");c=c.replace(g,e)}return c}function f(a,b,c){for(var d=a.style,e=0;e 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | Browny 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 | 43 | 44 | 45 | 46 | 47 | 48 | 52 | 53 | 54 | 55 | 56 | 59 | 60 | 61 |
    62 |
    63 | 64 | 92 | 93 |
    94 | 95 |
    96 | 97 |
    98 | 99 | 100 | 101 |
    102 |
    103 |
    104 |
    105 |
    106 |

    hi , i am
    browny
    star .

    107 |

    ui/ux designer and web developer

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

    about me

    121 |
    122 |
    123 |
    124 |
    125 |
    126 |
    127 |

    128 | I am a Professional UI/UX Designer and Web developer. Consectetur an adipisi elita, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud. 129 |

    130 |

    131 | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed ut perspi unde omnis iste natus error sit voluptatem accusantium doloremque lauda ntium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam vo luptatem quia voluptas sit aspernatur aut odit aut fugit, 132 |

    133 |
    134 |
    135 |
    136 |

    phone

    137 |

    987-123-6547

    138 |
    139 |
    140 |
    141 |
    142 |

    email

    143 |

    browny@info.com

    144 |
    145 |
    146 |
    147 |
    148 |

    website

    149 |

    www.brownsine.com

    150 |
    151 |
    152 |
    153 |
    154 |
    155 |
    156 |
    157 | profile_image 158 |
    159 | 190 |
    191 | 192 |
    193 | 194 |
    195 |
    196 |
    197 |
    198 |
    199 | 200 | 201 | 202 |
    203 |
    204 |

    education

    205 |
    206 |
    207 |
    208 |
    209 |
    210 |
    211 |
    212 |

    2008 - 2010

    213 |

    master of computer science

    214 |
    215 |
    216 | 217 | 218 |
    219 |
    220 |
    221 |

    222 | university of north carolina 223 |

    224 |
    north carolina, USA
    225 |

    226 | Duis aute irure dolor in reprehenderit in vol patate velit esse cillum dolore eu fugiat nulla pari. Excepteur sint occana inna tecat cupidatat non proident. 227 |

    228 |
    229 |
    230 |
    231 |
    232 |
    233 |
    234 |
    235 |

    2004 - 2008

    236 |

    bachelor of computer science

    237 |
    238 |
    239 | 240 | 241 |
    242 |
    243 |
    244 |

    245 | university of north carolina 246 |

    247 |
    north carolina, USA
    248 |

    249 | Duis aute irure dolor in reprehenderit in vol patate velit esse cillum dolore eu fugiat nulla pari. Excepteur sint occana inna tecat cupidatat non proident. 250 |

    251 |
    252 |
    253 |
    254 |
    255 |
    256 |
    257 |
    258 |

    2004 - 2008

    259 |

    bachelor of creative design

    260 |
    261 |
    262 | 263 | 265 |
    266 |
    267 |
    268 |

    269 | university of bolton 270 |

    271 |
    bolton, united kingdome
    272 |

    273 | Duis aute irure dolor in reprehenderit in vol patate velit esse cillum dolore eu fugiat nulla pari. Excepteur sint occana inna tecat cupidatat non proident. 274 |

    275 |
    276 |
    277 |
    278 |
    279 |
    280 |
    281 |
    282 | 283 |
    284 | 285 | 286 | 287 |
    288 |
    289 |
    290 |

    skills

    291 |
    292 |
    293 |
    294 |
    295 |
    296 |
    297 | adobe photoshop 298 |
    299 |
    300 |
    301 | 302 |
    303 |
    304 |

    90%

    305 |
    306 |
    307 |
    308 | adobe illustrator 309 |
    310 |
    311 |
    312 | 313 |
    314 |
    315 |

    85%

    316 |
    317 |
    318 |
    319 | adobe after effects 320 |
    321 |
    322 |
    323 | 324 |
    325 |
    326 |

    97%

    327 |
    328 |
    329 |
    330 | sketch 331 |
    332 |
    333 |
    334 | 335 |
    336 |
    337 |

    90%

    338 |
    339 |
    340 |
    341 |
    342 |
    343 |
    344 |
    345 | html 5 346 |
    347 |
    348 |
    349 | 350 |
    351 |
    352 |

    90%

    353 |
    354 |
    355 |
    356 | css 3 animation 357 |
    358 |
    359 |
    360 | 361 |
    362 |
    363 |

    85%

    364 |
    365 |
    366 |
    367 | communication 368 |
    369 |
    370 |
    371 | 372 |
    373 |
    374 |

    97%

    375 |
    376 |
    377 |
    378 | creativity 379 |
    380 |
    381 |
    382 | 383 |
    384 |
    385 |

    90%

    386 |
    387 |
    388 |
    389 |
    390 |
    391 |
    392 |
    393 | 394 |
    395 | 396 | 397 | 398 |
    399 |
    400 |

    experience

    401 |
    402 |
    403 |
    404 |
    405 |
      406 |
    • 407 |
      408 |
      409 |
      410 |
      411 |

      2018 - Present

      412 |

      creative director

      413 |
      414 |
      415 |
      416 |
      417 |
      418 |

      419 | 420 | hoplony tech limited 421 |

      422 |
      newyork, USA
      423 |

      424 | Duis aute irure dolor in reprehenderit in vol patate velit esse cillum dolore eu fugiat nulla pari. Excepteur sint occana inna tecat cupidatat non proident. 425 |

      426 |
      427 |
      428 |
      429 |
      430 |
      431 |
    • 432 | 433 |
    • 434 |
      435 |
      436 |
      437 |
      438 |

      439 | 440 | 2016 - 2018 441 |

      442 |

      associate design director

      443 |
      444 |
      445 |
      446 |
      447 |
      448 |

      449 | hoplony tech limited 450 |

      451 |
      newyork, USA
      452 |

      453 | Duis aute irure dolor in reprehenderit in vol patate velit esse cillum dolore eu fugiat nulla pari. Excepteur sint occana inna tecat cupidatat non proident. 454 |

      455 |
      456 |
      457 |
      458 |
      459 |
      460 |

      461 | 462 | 2016 - 2018 463 |

      464 |

      associate design director

      465 |
      466 |
      467 |
      468 |
      469 |
    • 470 | 471 |
    • 472 |
      473 |
      474 |
      475 |
      476 |

      2013 - 2016

      477 |

      senior UI/UX designer

      478 |
      479 |
      480 |
      481 |
      482 |
      483 |

      484 | 485 | hoplony tech limited 486 |

      487 |
      newyork, USA
      488 |

      489 | Duis aute irure dolor in reprehenderit in vol patate velit esse cillum dolore eu fugiat nulla pari. Excepteur sint occana inna tecat cupidatat non proident. 490 |

      491 |
      492 |
      493 |
      494 |
      495 |
      496 |
    • 497 | 498 |
    • 499 |
      500 |
      501 |
      502 |
      503 |

      504 | 505 | 2012 - 2013 506 |

      507 |

      UI/UX designer

      508 |
      509 |
      510 |
      511 |
      512 |
      513 |

      514 | hoplony tech limited 515 |

      516 |
      newyork, USA
      517 |

      518 | Duis aute irure dolor in reprehenderit in vol patate velit esse cillum dolore eu fugiat nulla pari. Excepteur sint occana inna tecat cupidatat non proident. 519 |

      520 |
      521 |
      522 |
      523 |
      524 |
      525 |

      526 | 527 | 2012 - 2013 528 |

      529 |

      UI/UX designer

      530 |
      531 |
      532 |
      533 |
      534 |
    • 535 | 536 |
    • 537 |
      538 |
      539 |
      540 |
      541 |

      2010 - 2012

      542 |

      frontend developer

      543 |
      544 |
      545 |
      546 |
      547 |
      548 |

      549 | 550 | hoplony tech limited 551 |

      552 |
      newyork, USA
      553 |

      554 | Duis aute irure dolor in reprehenderit in vol patate velit esse cillum dolore eu fugiat nulla pari. Excepteur sint occana inna tecat cupidatat non proident. 555 |

      556 |
      557 |
      558 |
      559 |
      560 |
      561 |
    • 562 | 563 |
    564 |
    565 |
    566 |
    567 | 568 |
    569 | 570 | 571 | 572 |
    573 |
    574 |
    575 |

    profiles

    576 |
    577 |
    578 |
    579 |
    580 |
    581 |
    582 |
    583 | 584 |
    themeforest
    585 |
    586 |
    587 |
    588 | 589 |
    themeforest
    590 |
    591 |
    592 |
    593 |
    594 |
    595 |
    596 |
    597 | 598 |
    dribbble
    599 |
    600 |
    601 |
    602 | 603 |
    dribbble
    604 |
    605 |
    606 |
    607 |
    608 |
    609 |
    610 |
    611 | 612 |
    behance
    613 |
    614 |
    615 |
    616 | 617 |
    behance
    618 |
    619 |
    620 |
    621 |
    622 |
    623 |
    624 |
    625 | 626 |
    github
    627 |
    628 |
    629 |
    630 | 631 |
    github
    632 |
    633 |
    634 |
    635 |
    636 |
    637 |
    638 |
    639 |
    640 |
    641 |
    642 | 643 |
    flickR
    644 |
    645 |
    646 |
    647 | 648 |
    flickR
    649 |
    650 |
    651 |
    652 |
    653 |
    654 |
    655 |
    656 | 657 |
    smungMung
    658 |
    659 |
    660 |
    661 | 662 |
    smungMung
    663 |
    664 |
    665 |
    666 |
    667 |
    668 |
    669 |
    670 | 671 |
    squareSpace
    672 |
    673 |
    674 |
    675 | 676 |
    squareSpace
    677 |
    678 |
    679 |
    680 |
    681 |
    682 |
    683 |
    684 | 685 |
    bitBucket
    686 |
    687 |
    688 |
    689 | 690 |
    bitBucket
    691 |
    692 |
    693 |
    694 |
    695 |
    696 |
    697 |
    698 |
    699 | 700 |
    701 | 702 | 703 | 704 |
    705 |
    706 |
    707 |

    portfolio

    708 |
    709 |
    710 |
    711 |
    712 |
    713 | 714 |
    715 |
    716 | portfolio image 717 | 722 |
    723 |
    724 | portfolio image 725 | 730 |
    731 |
    732 | 733 |
    734 |
    735 | portfolio image 736 | 741 |
    742 |
    743 | 744 |
    745 |
    746 | portfolio image 747 | 752 |
    753 |
    754 | portfolio image 755 | 760 |
    761 |
    762 |
    763 |
    764 |
    765 |
    766 |
    767 | 768 |
    769 | 770 | 771 | 772 |
    773 |
    774 |

    clients

    775 |
    776 |
    777 |
    778 | 815 |
    816 |
    817 | 818 |
    819 | 820 | 821 | 822 | 823 | 824 |
    825 |
    826 |

    contact me

    827 |
    828 |
    829 |
    830 |
    831 |
    832 |
    833 |
    834 |
    835 |
    836 |
    837 |
    838 | 839 |
    840 |
    841 |
    842 |
    843 | 844 |
    845 |
    846 |
    847 |
    848 |
    849 |
    850 | 851 |
    852 |
    853 |
    854 |
    855 |
    856 |
    857 | 858 |
    859 |
    860 |
    861 |
    862 |
    863 |
    864 | submit 865 |
    866 |
    867 |
    868 |
    869 |
    870 |
    871 |
    872 |
    873 |
    874 |
    875 |
    876 |

    browny star

    877 |

    uI/uX designer

    878 |
    879 |
    880 |
    881 |

    phone

    882 |

    987-123-6547

    883 |
    884 |
    885 |

    email

    886 |

    browny@info.com

    887 |
    888 |
    889 |

    website

    890 |

    www.brownsine.com

    891 |
    892 |
    893 |
    894 |
    895 |
      896 |
    • 897 |
    • 898 |
    • 899 |
    • 900 |
    • 901 |
    902 |
    903 |
    904 |
    905 |
    906 |
    907 |
    908 | 909 |
    910 | 911 | 912 | 913 |
    914 |
    915 | 920 |
    921 | 922 |
    923 |
    924 | 925 |
    926 | 927 |
    928 | 929 |
    930 | 931 | 932 | 933 | 934 | 935 | 936 | 937 | 938 | 939 | 940 | 941 | 942 | 943 | 944 | 945 | 946 | 947 | 948 | 949 | 950 | 951 | 952 | 953 | 954 | 955 | 956 | 957 | 958 | 959 | 960 | 961 | 962 | 963 | 964 | 965 | 966 | 967 | 968 | 969 | 970 | -------------------------------------------------------------------------------- /browny-v1.0/readme.txt: -------------------------------------------------------------------------------- 1 | ----------------------- 2 | # README 3 | ----------------------- 4 | Browny is a one page bootstrap 3 based resume/portfolio template. 5 | 6 | 7 | Template Info: 8 | ----------------------- 9 | Name: Browny - Free Bootstrap One Page Portfolio Resume Tempalte 10 | Version: 1.0 11 | Author: ThemeSINE 12 | Website: https://www.themesine.com/ 13 | 14 | 15 | Changelog: 16 | ----------------------- 17 | Version 1.0 14-05-2018 18 | - initial release 19 | 20 | 21 | Credits: 22 | ----------------------- 23 | - Twitter Bootstrap http://getbootstrap.com 24 | - jQuery http://jquery.org 25 | - Modernizr https://modernizr.com/ 26 | - Sticky.js http://stickyjs.com/ 27 | - JQuery easing https://github.com/gdsmith/jquery.easing 28 | - Bootsnav http://bootsnav.danurstrap.com/ 29 | - Pexels https://www.pexels.com/ 30 | - Unsplash https://unsplash.com/ 31 | 32 | License: 33 | ----------------------- 34 | This template is under Free License - https://www.themesine.com/license/ --------------------------------------------------------------------------------