├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .jscsrc ├── .jshintignore ├── .travis.yml ├── 404.php ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.txt ├── archive.php ├── codesniffer.ruleset.xml ├── comments.php ├── css ├── bootstrap │ ├── bootstrap.css │ └── bootstrap.min.css ├── customizer-custom.css ├── styles │ ├── responsive.css │ ├── responsive.min.css │ ├── slick.css │ ├── slick.min.css │ ├── style.css │ └── style.min.css ├── toggle-switch.css ├── vc-font │ ├── visual-composer-starter-font.css │ └── visual-composer-starter-font.min.css ├── visual-composer-starter-font.css ├── visual-composer-starter-font.min.css └── woocommerce │ ├── init.min.css │ ├── woocommerce.css │ └── woocommerce.min.css ├── fonts ├── default-fonts │ ├── Montserrat │ │ ├── Montserrat-Bold.ttf │ │ └── Montserrat-SemiBold.ttf │ └── Roboto │ │ ├── Roboto-Bold.ttf │ │ └── Roboto-Regular.ttf ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff ├── glyphicons-halflings-regular.woff2 ├── visual-composer-starter-font.eot ├── visual-composer-starter-font.svg ├── visual-composer-starter-font.ttf ├── visual-composer-starter-font.woff └── visual-composer-starter-font.woff2 ├── footer.php ├── functions.php ├── header.php ├── images ├── discount.png ├── spinner-light.svg ├── spinner.svg └── vct-logo.svg ├── inc ├── customizer │ ├── class-visualcomposerstarter-customizer.php │ ├── class-visualcomposerstarter-fonts.php │ └── controls │ │ ├── class-visualcomposerstarter-google-fonts-control.php │ │ └── class-visualcomposerstarter-toggle-switch-control.php ├── hooks.php ├── template-tags.php └── tgmpa │ └── class-tgm-plugin-activation.php ├── index.php ├── js ├── bootstrap │ ├── collapse.js │ ├── collapse.min.js │ ├── package.json │ ├── transition.js │ └── transition.min.js ├── control-google-fonts.js ├── control-select.js ├── control-toggle-switch.js ├── customize-popup.js ├── customize-preview.js ├── customize-preview.min.js ├── functions.js ├── functions.min.js ├── header-scripts.js ├── slick │ ├── package.json │ ├── slick.js │ └── slick.min.js └── toggle-switch-acf.js ├── languages └── visual-composer-starter.pot ├── less ├── bootstrap │ ├── alerts.less │ ├── badges.less │ ├── bootstrap.less │ ├── breadcrumbs.less │ ├── button-groups.less │ ├── buttons.less │ ├── carousel.less │ ├── close.less │ ├── code.less │ ├── component-animations.less │ ├── dropdowns.less │ ├── forms.less │ ├── glyphicons.less │ ├── grid.less │ ├── input-groups.less │ ├── jumbotron.less │ ├── labels.less │ ├── list-group.less │ ├── media.less │ ├── mixins.less │ ├── mixins │ │ ├── alerts.less │ │ ├── background-variant.less │ │ ├── border-radius.less │ │ ├── buttons.less │ │ ├── center-block.less │ │ ├── clearfix.less │ │ ├── forms.less │ │ ├── gradients.less │ │ ├── grid-framework.less │ │ ├── grid.less │ │ ├── hide-text.less │ │ ├── image.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── nav-divider.less │ │ ├── nav-vertical-align.less │ │ ├── opacity.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── progress-bar.less │ │ ├── reset-filter.less │ │ ├── reset-text.less │ │ ├── resize.less │ │ ├── responsive-visibility.less │ │ ├── size.less │ │ ├── tab-focus.less │ │ ├── table-row.less │ │ ├── text-emphasis.less │ │ ├── text-overflow.less │ │ └── vendor-prefixes.less │ ├── modals.less │ ├── navbar.less │ ├── navs.less │ ├── normalize.less │ ├── pager.less │ ├── pagination.less │ ├── panels.less │ ├── popovers.less │ ├── print.less │ ├── progress-bars.less │ ├── responsive-embed.less │ ├── responsive-utilities.less │ ├── responsive.less │ ├── scaffolding.less │ ├── tables.less │ ├── theme.less │ ├── thumbnails.less │ ├── tooltip.less │ ├── type.less │ ├── utilities.less │ ├── variables.less │ └── wells.less ├── styles │ ├── bootstrap.less │ ├── code.less │ ├── fonts.less │ ├── forms.less │ ├── grid.less │ ├── input-groups.less │ ├── mixins.less │ ├── mixins │ │ ├── background-variant.less │ │ ├── border-radius.less │ │ ├── center-block.less │ │ ├── clearfix.less │ │ ├── forms.less │ │ ├── grid-framework.less │ │ ├── grid.less │ │ ├── hide-text.less │ │ ├── nav-divider.less │ │ ├── nav-vertical-align.less │ │ ├── tab-focus.less │ │ ├── table-row.less │ │ ├── text-emphasis.less │ │ ├── text-overflow.less │ │ └── vendor-prefixes.less │ ├── navbar.less │ ├── navs.less │ ├── normalize.less │ ├── print.less │ ├── responsive.less │ ├── scaffolding.less │ ├── slick.less │ ├── style.less │ ├── tables.less │ ├── type.less │ ├── utilities.less │ └── variables.less ├── vc-font │ └── visual-composer-starter-font.less └── woocommerce │ ├── components │ ├── account.less │ ├── animations.less │ ├── buttons.less │ ├── cart.less │ ├── checkout.less │ ├── form-fields.less │ ├── media.less │ ├── mixins.less │ ├── notices.less │ ├── order-summary.less │ ├── pagination.less │ ├── product.less │ ├── related.less │ ├── shop.less │ ├── thankyou.less │ ├── variables.less │ └── widgets.less │ └── woocommerce.less ├── package.json ├── page.php ├── screenshot.png ├── search.php ├── searchform.php ├── sidebar.php ├── single.php ├── style.css ├── template-parts ├── biography.php ├── content-gallery.php ├── content-none.php ├── content-page.php ├── content-single.php ├── content-video.php └── content.php ├── woocommerce.php └── woocommerce ├── cart ├── cart-totals.php └── cart.php ├── checkout ├── form-checkout.php ├── form-coupon.php ├── review-order.php └── thankyou.php ├── global └── quantity-input.php ├── loop ├── orderby.php └── pagination.php ├── myaccount └── my-address.php ├── notices ├── error.php ├── notice.php └── success.php ├── order ├── order-details-customer.php ├── order-details-item.php └── order-details.php └── single-product ├── meta.php ├── price.php └── rating.php /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | package-lock.json 4 | yarn.lock 5 | .DS_store 6 | .vscode -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "wordpress", 3 | "fileExtensions": [ ".js" ], 4 | "excludeFiles": [ 5 | "js/**.min.js", 6 | "js/bootstrap/*", 7 | "js/slick/*" 8 | ] 9 | } -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | js/**.min.js 2 | js/bootstrap/* 3 | js/slick/* -------------------------------------------------------------------------------- /404.php: -------------------------------------------------------------------------------- 1 | 11 |
12 |
13 |
14 |
15 |
16 |
17 |

18 |

19 | 20 |
21 |
22 |
23 | 24 | 25 | 26 | 27 | 28 |
29 |
30 |
31 | Themes and click the Add New button. 35 | 2. Click Upload and select the .zip file of the Starter theme. 36 | 3. Click Install Now. 37 | 4. Click Activate to use your new theme right away. 38 | 39 | = License = 40 | 41 | Visual Composer Starter WordPress theme, Copyright (C) 2017 visualcomposer.io 42 | Visual Composer Starter WordPress theme is licensed under the [GPLv2](http://www.gnu.org/licenses/gpl-2.0.html) or later. 43 | 44 | Unless otherwise specified, all the theme files, scripts and images are licensed under GNU General Public License. 45 | 46 | The exceptions to this license are as follows: 47 | * Bootstrap v3.3.7 | getbootstrap.com/ 48 | Copyright 2011-2016 Twitter, Inc. 49 | Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 50 | * normalize.css v3.0.3 | github.com/necolas/normalize.css 51 | Licensed under MIT 52 | * slick v1.6.0 | github.com/kenwheeler/slick/ 53 | Copyright (c) 2014 Ken Wheeler 54 | Licensed under the MIT license. 55 | Free as in Bacon. 56 | * Google Fonts 57 | Roboto (Christian Robertson), Apache License, Version 2.0, https://fonts.google.com/specimen/Roboto 58 | Playfair Display (Claus Eggers Sørensen), Open Font License, https://fonts.google.com/specimen/Playfair%20Display 59 | -------------------------------------------------------------------------------- /archive.php: -------------------------------------------------------------------------------- 1 | 11 |
12 |
13 |
14 |
15 |
16 |
17 | ', '' ); 19 | the_archive_description( '

', '

' ); 20 | ?> 21 |
22 |
23 | 24 | 25 | 40 | 52 | 61 | 62 |
63 |
64 |
65 | 66 | 67 | 68 | 69 | 70 |
71 |
72 |
73 | 2 | 3 | 4 | 5 | 6 | 7 | A custom set of code standard rules to check for WordPress themes. 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | */class-tgm-plugin-activation.php 35 | -------------------------------------------------------------------------------- /comments.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |
16 |
17 |
18 |
19 | 20 |

21 | 22 |

23 |

24 | 25 | 26 | 27 |
    28 | 'visualcomposerstarter_comment', 31 | 'reply_text' => esc_html__( 'Reply', 'visual-composer-starter' ), 32 | 'avatar_size' => 80, 33 | 'style' => 'ol', 34 | ) 35 | ); ?> 36 |
37 | 38 | 39 | 40 | 41 | 42 | 46 |

47 | 48 | 49 | '

', 53 | 'title_reply_after' => '

', 54 | 'title_reply' => esc_html__( 'Leave A Comment', 'visual-composer-starter' ), 55 | ) ); 56 | } else { 57 | comment_form( array( 58 | 'title_reply_before' => '

', 59 | 'title_reply_after' => '

', 60 | 'title_reply' => esc_html__( 'Share Your Thoughts', 'visual-composer-starter' ), 61 | ) ); 62 | } 63 | 64 | ?> 65 | 66 |
67 |
68 |
69 |
70 | -------------------------------------------------------------------------------- /css/customizer-custom.css: -------------------------------------------------------------------------------- 1 | .customize-control select { 2 | width: 100%; 3 | } 4 | 5 | .hiddenSection { 6 | display: none !important; 7 | } 8 | 9 | .vct-message { 10 | margin-top: 5px; 11 | } 12 | 13 | .vct-popup { 14 | background-color: rgba(0,0,0, .4); 15 | position: fixed; 16 | top: 0; 17 | left: 0; 18 | width: 100%; 19 | height: 100%; 20 | z-index: 1000; 21 | align-items: center; 22 | justify-content: center; 23 | } 24 | 25 | .vct-popup-content { 26 | max-width: 100%; 27 | width: 600px; 28 | background: #fff; 29 | overflow: auto; 30 | position: relative; 31 | padding: 35px; 32 | margin: 0 15px; 33 | box-sizing: border-box; 34 | border-radius: 5px; 35 | text-align: center; 36 | } 37 | 38 | .vct-popup-close { 39 | position: absolute; 40 | right: 5px; 41 | top: 5px; 42 | cursor: pointer; 43 | background: transparent; 44 | border: none; 45 | height: 30px; 46 | width: 30px; 47 | display: flex; 48 | align-items: center; 49 | justify-content: center; 50 | padding: 10px; 51 | } 52 | 53 | .vct-popup-close::before, 54 | .vct-popup-close::after { 55 | content: ''; 56 | height: 2px; 57 | width: 20px; 58 | background: #bdbdbd; 59 | position: absolute; 60 | } 61 | 62 | .vct-popup-close::before { 63 | transform: rotate(45deg); 64 | } 65 | 66 | .vct-popup-close::after { 67 | transform: rotate(-45deg); 68 | } 69 | 70 | .vct-popup-buttons, 71 | .vct-spinner-wrapper { 72 | margin-top: 30px; 73 | } 74 | 75 | .vct-popup-buttons button { 76 | background: #a8a8a8; 77 | border-radius: initial; 78 | border: none; 79 | padding: 10px 15px; 80 | color: #fff; 81 | cursor: pointer; 82 | } 83 | -------------------------------------------------------------------------------- /css/styles/slick.css: -------------------------------------------------------------------------------- 1 | /* Slider */ 2 | .slick-slider { 3 | position: relative; 4 | display: block; 5 | -webkit-box-sizing: border-box; 6 | box-sizing: border-box; 7 | -webkit-touch-callout: none; 8 | -webkit-user-select: none; 9 | -moz-user-select: none; 10 | -ms-user-select: none; 11 | user-select: none; 12 | -ms-touch-action: pan-y; 13 | touch-action: pan-y; 14 | -webkit-tap-highlight-color: transparent; 15 | } 16 | .slick-list { 17 | position: relative; 18 | overflow: hidden; 19 | display: block; 20 | margin: 0; 21 | padding: 0; 22 | } 23 | .slick-list:focus { 24 | outline: none; 25 | } 26 | .slick-list.dragging { 27 | cursor: pointer; 28 | cursor: hand; 29 | } 30 | .slick-slider .slick-track, 31 | .slick-slider .slick-list { 32 | -webkit-transform: translate3d(0, 0, 0); 33 | -ms-transform: translate3d(0, 0, 0); 34 | transform: translate3d(0, 0, 0); 35 | } 36 | .slick-track { 37 | position: relative; 38 | left: 0; 39 | top: 0; 40 | display: block; 41 | } 42 | .slick-track:before, 43 | .slick-track:after { 44 | content: ""; 45 | display: table; 46 | } 47 | .slick-track:after { 48 | clear: both; 49 | } 50 | .slick-loading .slick-track { 51 | visibility: hidden; 52 | } 53 | .slick-slide { 54 | float: left; 55 | height: 100%; 56 | min-height: 1px; 57 | display: none; 58 | } 59 | [dir="rtl"] .slick-slide { 60 | float: right; 61 | } 62 | .slick-slide img { 63 | display: block; 64 | } 65 | .slick-slide.slick-loading img { 66 | display: none; 67 | } 68 | .slick-slide.dragging img { 69 | pointer-events: none; 70 | } 71 | .slick-initialized .slick-slide { 72 | display: block; 73 | } 74 | .slick-loading .slick-slide { 75 | visibility: hidden; 76 | } 77 | .slick-vertical .slick-slide { 78 | display: block; 79 | height: auto; 80 | border: 1px solid transparent; 81 | } 82 | .slick-arrow.slick-hidden { 83 | display: none; 84 | } 85 | -------------------------------------------------------------------------------- /css/styles/slick.min.css: -------------------------------------------------------------------------------- 1 | .slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;left:0;top:0;display:block}.slick-track:after,.slick-track:before{content:"";display:table}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{float:left;height:100%;min-height:1px;display:none}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none} -------------------------------------------------------------------------------- /css/toggle-switch.css: -------------------------------------------------------------------------------- 1 | .onoffswitch { 2 | position: relative; 3 | width: 60px; 4 | margin: 10px 0; 5 | -webkit-user-select:none; 6 | -moz-user-select:none; 7 | -ms-user-select: none; 8 | } 9 | .onoffswitch-checkbox { 10 | display: none !important; 11 | } 12 | .onoffswitch-label { 13 | display: block; 14 | overflow: hidden; 15 | cursor: pointer; 16 | border-radius: 20px; 17 | } 18 | .onoffswitch-inner { 19 | display: block; 20 | width: 200%; 21 | margin-left: -100%; 22 | transition: margin 0.3s ease-in 0s; 23 | } 24 | .onoffswitch-inner:before, .onoffswitch-inner:after { 25 | display: block; 26 | float: left; 27 | width: 50%; 28 | height: 30px; 29 | padding: 0; 30 | line-height: 30px; 31 | font-size: 10px; 32 | color: #fff; 33 | font-family: "Open Sans", sans-serif; 34 | font-weight: 600; 35 | box-sizing: border-box; 36 | } 37 | .onoffswitch-inner:before { 38 | content: "ON"; 39 | padding-left: 12px; 40 | background-color: #0084bc; 41 | } 42 | .onoffswitch-inner:after { 43 | content: "OFF"; 44 | padding-right: 11px; 45 | background-color: #444; 46 | text-align: right; 47 | } 48 | .onoffswitch-switch { 49 | display: block; 50 | width: 16px; 51 | margin: 7px; 52 | background: #FFFFFF; 53 | position: absolute; 54 | top: 0; 55 | bottom: 0; 56 | right: 30px; 57 | border-radius: 20px; 58 | transition: all 0.3s ease-in 0s; 59 | } 60 | .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { 61 | margin-left: 0; 62 | } 63 | .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { 64 | right: 0px; 65 | } 66 | -------------------------------------------------------------------------------- /css/vc-font/visual-composer-starter-font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Visual Composer Starter Font'; 3 | font-display: swap; 4 | src: url('../../fonts/visual-composer-starter-font.eot'); 5 | src: url('../../fonts/visual-composer-starter-font.eot?#iefix') format('embedded-opentype'), url('../../fonts/visual-composer-starter-font.woff2') format('woff2'), url('../../fonts/visual-composer-starter-font.woff') format('woff'), url('../../fonts/visual-composer-starter-font.ttf') format('truetype'), url('../../fonts/visual-composer-starter-font.svg#visual-composer-starter-font') format('svg'); 6 | } 7 | [data-icon]:before { 8 | font-family: "Visual Composer Starter Font" !important; 9 | content: attr(data-icon); 10 | font-style: normal !important; 11 | font-weight: normal !important; 12 | font-variant: normal !important; 13 | text-transform: none !important; 14 | speak: none; 15 | line-height: 1; 16 | -webkit-font-smoothing: antialiased; 17 | -moz-osx-font-smoothing: grayscale; 18 | } 19 | [class^="vct-icon-"]:before, 20 | [class*=" vct-icon-"]:before { 21 | font-family: "Visual Composer Starter Font" !important; 22 | font-style: normal !important; 23 | font-weight: normal !important; 24 | font-variant: normal !important; 25 | text-transform: none !important; 26 | speak: none; 27 | line-height: 1; 28 | -webkit-font-smoothing: antialiased; 29 | -moz-osx-font-smoothing: grayscale; 30 | } 31 | .vct-icon-chat-bubble-outline:before { 32 | content: "\61"; 33 | } 34 | .vct-icon-event-note:before { 35 | content: "\62"; 36 | } 37 | .vct-icon-facebook-with-circle:before { 38 | content: "\63"; 39 | } 40 | .vct-icon-flickr-with-circle:before { 41 | content: "\64"; 42 | } 43 | .vct-icon-folder-open:before { 44 | content: "\65"; 45 | } 46 | .vct-icon-github-with-circle:before { 47 | content: "\66"; 48 | } 49 | .vct-icon-twitter-with-circle:before { 50 | content: "\67"; 51 | } 52 | .vct-icon-vimeo-with-circle:before { 53 | content: "\68"; 54 | } 55 | .vct-icon-youtube-with-circle:before { 56 | content: "\69"; 57 | } 58 | .vct-icon-instagram-with-circle:before { 59 | content: "\6a"; 60 | } 61 | .vct-icon-linkedin-with-circle:before { 62 | content: "\6b"; 63 | } 64 | .vct-icon-mail:before { 65 | content: "\6c"; 66 | } 67 | .vct-icon-mail-circle:before { 68 | content: "\6d"; 69 | } 70 | .vct-icon-person-outline:before { 71 | content: "\6e"; 72 | } 73 | .vct-icon-pinterest-with-circle:before { 74 | content: "\6f"; 75 | } 76 | .vct-icon-search:before { 77 | content: "\70"; 78 | } 79 | .vct-icon-dropdown:before { 80 | content: "\71"; 81 | } 82 | .vct-icon-close:before { 83 | content: "\72"; 84 | } 85 | -------------------------------------------------------------------------------- /css/vc-font/visual-composer-starter-font.min.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:'Visual Composer Starter Font';font-display:swap;src:url(../../fonts/visual-composer-starter-font.eot);src:url(../../fonts/visual-composer-starter-font.eot?#iefix) format('embedded-opentype'),url(../../fonts/visual-composer-starter-font.woff2) format('woff2'),url(../../fonts/visual-composer-starter-font.woff) format('woff'),url(../../fonts/visual-composer-starter-font.ttf) format('truetype'),url(../../fonts/visual-composer-starter-font.svg#visual-composer-starter-font) format('svg')}[data-icon]:before{font-family:"Visual Composer Starter Font"!important;content:attr(data-icon);font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class*=" vct-icon-"]:before,[class^=vct-icon-]:before{font-family:"Visual Composer Starter Font"!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vct-icon-chat-bubble-outline:before{content:"\61"}.vct-icon-event-note:before{content:"\62"}.vct-icon-facebook-with-circle:before{content:"\63"}.vct-icon-flickr-with-circle:before{content:"\64"}.vct-icon-folder-open:before{content:"\65"}.vct-icon-github-with-circle:before{content:"\66"}.vct-icon-twitter-with-circle:before{content:"\67"}.vct-icon-vimeo-with-circle:before{content:"\68"}.vct-icon-youtube-with-circle:before{content:"\69"}.vct-icon-instagram-with-circle:before{content:"\6a"}.vct-icon-linkedin-with-circle:before{content:"\6b"}.vct-icon-mail:before{content:"\6c"}.vct-icon-mail-circle:before{content:"\6d"}.vct-icon-person-outline:before{content:"\6e"}.vct-icon-pinterest-with-circle:before{content:"\6f"}.vct-icon-search:before{content:"\70"}.vct-icon-dropdown:before{content:"\71"}.vct-icon-close:before{content:"\72"} -------------------------------------------------------------------------------- /css/visual-composer-starter-font.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'Visual Composer Starter Font'; 3 | font-display: swap; 4 | src: url('../fonts/visual-composer-starter-font.eot'); 5 | src: url('../fonts/visual-composer-starter-font.eot?#iefix') format('embedded-opentype'), url('../fonts/visual-composer-starter-font.woff2') format('woff2'), url('../fonts/visual-composer-starter-font.woff') format('woff'), url('../fonts/visual-composer-starter-font.ttf') format('truetype'), url('../fonts/visual-composer-starter-font.svg#visual-composer-starter-font') format('svg'); 6 | } 7 | [data-icon]:before { 8 | font-family: "Visual Composer Starter Font" !important; 9 | content: attr(data-icon); 10 | font-style: normal !important; 11 | font-weight: normal !important; 12 | font-variant: normal !important; 13 | text-transform: none !important; 14 | speak: none; 15 | line-height: 1; 16 | -webkit-font-smoothing: antialiased; 17 | -moz-osx-font-smoothing: grayscale; 18 | } 19 | [class^="vct-icon-"]:before, 20 | [class*=" vct-icon-"]:before { 21 | font-family: "Visual Composer Starter Font" !important; 22 | font-style: normal !important; 23 | font-weight: normal !important; 24 | font-variant: normal !important; 25 | text-transform: none !important; 26 | speak: none; 27 | line-height: 1; 28 | -webkit-font-smoothing: antialiased; 29 | -moz-osx-font-smoothing: grayscale; 30 | } 31 | .vct-icon-chat-bubble-outline:before { 32 | content: "\61"; 33 | } 34 | .vct-icon-event-note:before { 35 | content: "\62"; 36 | } 37 | .vct-icon-facebook-with-circle:before { 38 | content: "\63"; 39 | } 40 | .vct-icon-flickr-with-circle:before { 41 | content: "\64"; 42 | } 43 | .vct-icon-folder-open:before { 44 | content: "\65"; 45 | } 46 | .vct-icon-github-with-circle:before { 47 | content: "\66"; 48 | } 49 | .vct-icon-twitter-with-circle:before { 50 | content: "\67"; 51 | } 52 | .vct-icon-vimeo-with-circle:before { 53 | content: "\68"; 54 | } 55 | .vct-icon-youtube-with-circle:before { 56 | content: "\69"; 57 | } 58 | .vct-icon-instagram-with-circle:before { 59 | content: "\6a"; 60 | } 61 | .vct-icon-linkedin-with-circle:before { 62 | content: "\6b"; 63 | } 64 | .vct-icon-mail:before { 65 | content: "\6c"; 66 | } 67 | .vct-icon-mail-circle:before { 68 | content: "\6d"; 69 | } 70 | .vct-icon-person-outline:before { 71 | content: "\6e"; 72 | } 73 | .vct-icon-pinterest-with-circle:before { 74 | content: "\6f"; 75 | } 76 | .vct-icon-search:before { 77 | content: "\70"; 78 | } 79 | .vct-icon-dropdown:before { 80 | content: "\71"; 81 | } 82 | .vct-icon-close:before { 83 | content: "\72"; 84 | } 85 | -------------------------------------------------------------------------------- /css/visual-composer-starter-font.min.css: -------------------------------------------------------------------------------- 1 | @font-face{font-family:'Visual Composer Starter Font';font-display:swap;src:url(../fonts/visual-composer-starter-font.eot);src:url(../fonts/visual-composer-starter-font.eot?#iefix) format('embedded-opentype'),url(../fonts/visual-composer-starter-font.woff2) format('woff2'),url(../fonts/visual-composer-starter-font.woff) format('woff'),url(../fonts/visual-composer-starter-font.ttf) format('truetype'),url(../fonts/visual-composer-starter-font.svg#visual-composer-starter-font) format('svg')}[data-icon]:before{font-family:"Visual Composer Starter Font"!important;content:attr(data-icon);font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}[class*=" vct-icon-"]:before,[class^=vct-icon-]:before{font-family:"Visual Composer Starter Font"!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.vct-icon-chat-bubble-outline:before{content:"\61"}.vct-icon-event-note:before{content:"\62"}.vct-icon-facebook-with-circle:before{content:"\63"}.vct-icon-flickr-with-circle:before{content:"\64"}.vct-icon-folder-open:before{content:"\65"}.vct-icon-github-with-circle:before{content:"\66"}.vct-icon-twitter-with-circle:before{content:"\67"}.vct-icon-vimeo-with-circle:before{content:"\68"}.vct-icon-youtube-with-circle:before{content:"\69"}.vct-icon-instagram-with-circle:before{content:"\6a"}.vct-icon-linkedin-with-circle:before{content:"\6b"}.vct-icon-mail:before{content:"\6c"}.vct-icon-mail-circle:before{content:"\6d"}.vct-icon-person-outline:before{content:"\6e"}.vct-icon-pinterest-with-circle:before{content:"\6f"}.vct-icon-search:before{content:"\70"}.vct-icon-dropdown:before{content:"\71"}.vct-icon-close:before{content:"\72"} -------------------------------------------------------------------------------- /fonts/default-fonts/Montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualComposer/visual-composer-starter/2324ff3c49fceee2d1d79c29cb5e3b51cc330f4e/fonts/default-fonts/Montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /fonts/default-fonts/Montserrat/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualComposer/visual-composer-starter/2324ff3c49fceee2d1d79c29cb5e3b51cc330f4e/fonts/default-fonts/Montserrat/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/default-fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualComposer/visual-composer-starter/2324ff3c49fceee2d1d79c29cb5e3b51cc330f4e/fonts/default-fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /fonts/default-fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualComposer/visual-composer-starter/2324ff3c49fceee2d1d79c29cb5e3b51cc330f4e/fonts/default-fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualComposer/visual-composer-starter/2324ff3c49fceee2d1d79c29cb5e3b51cc330f4e/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualComposer/visual-composer-starter/2324ff3c49fceee2d1d79c29cb5e3b51cc330f4e/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualComposer/visual-composer-starter/2324ff3c49fceee2d1d79c29cb5e3b51cc330f4e/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualComposer/visual-composer-starter/2324ff3c49fceee2d1d79c29cb5e3b51cc330f4e/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /fonts/visual-composer-starter-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualComposer/visual-composer-starter/2324ff3c49fceee2d1d79c29cb5e3b51cc330f4e/fonts/visual-composer-starter-font.eot -------------------------------------------------------------------------------- /fonts/visual-composer-starter-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualComposer/visual-composer-starter/2324ff3c49fceee2d1d79c29cb5e3b51cc330f4e/fonts/visual-composer-starter-font.ttf -------------------------------------------------------------------------------- /fonts/visual-composer-starter-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualComposer/visual-composer-starter/2324ff3c49fceee2d1d79c29cb5e3b51cc330f4e/fonts/visual-composer-starter-font.woff -------------------------------------------------------------------------------- /fonts/visual-composer-starter-font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualComposer/visual-composer-starter/2324ff3c49fceee2d1d79c29cb5e3b51cc330f4e/fonts/visual-composer-starter-font.woff2 -------------------------------------------------------------------------------- /images/discount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VisualComposer/visual-composer-starter/2324ff3c49fceee2d1d79c29cb5e3b51cc330f4e/images/discount.png -------------------------------------------------------------------------------- /images/spinner-light.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /images/spinner.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /images/vct-logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | VC symbol 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /inc/customizer/controls/class-visualcomposerstarter-google-fonts-control.php: -------------------------------------------------------------------------------- 1 | wp_create_nonce( 'vct_google_fonts_ajax_nonce' ), 43 | ) 44 | ); 45 | } 46 | 47 | /** 48 | * Render the control's content. 49 | * 50 | * Allows the content to be overridden without having to rewrite the wrapper in `$this::render()`. 51 | * 52 | * Supports basic input types `text`, `checkbox`, `textarea`, `radio`, `select` and `dropdown-pages`. 53 | * Additional input types such as `email`, `url`, `number`, `hidden` and `date` are supported implicitly. 54 | * 55 | * Control content can alternately be rendered in JS. See WP_Customize_Control::print_template(). 56 | * 57 | * @since 3.4.0 58 | */ 59 | protected function render_content() { 60 | if ( empty( $this->choices ) ) { 61 | return; 62 | } 63 | 64 | $input_id = '_customize-input-' . $this->id; 65 | $description_id = '_customize-description-' . $this->id; 66 | $message_id = '_customize-message-' . $this->id; 67 | $describedby_attr = ( ! empty( $this->description ) ) ? ' aria-describedby="' . esc_attr( $description_id ) . '" ' : ''; 68 | 69 | ?> 70 | label ) ) : ?> 71 | 72 | 73 | description ) ) : ?> 74 | description ); ?> 75 | 76 | 83 | 97 | json['value'] = $this->value(); 53 | $this->json['id'] = $this->id; 54 | } 55 | 56 | /** 57 | * An Underscore (JS) template for this control's content. 58 | * 59 | * Class variables for this control class are available in the `data` JS object; 60 | * export custom variables by overriding {@see WP_Customize_Control::to_json()}. 61 | * 62 | * @see WP_Customize_Control::print_template() 63 | * 64 | * @access protected 65 | * @since 1.0 66 | * @return void 67 | */ 68 | protected function content_template() { 69 | ?> 70 | 71 | <# if ( data.label ) { #> 72 | {{ data.label }} 73 | <# } #> 74 | 75 | <# if ( data.description ) { #> 76 | {{{ data.description }}} 77 | <# } #> 78 | 79 |
80 | checked <# } #>> 81 | 85 |
86 | tag 12 | * 13 | * @since Visual Composer Starter 2.0.0 14 | */ 15 | function visualcomposerstarter_hook_after_head() { 16 | do_action( 'visualcomposerstarter_hook_after_head' ); 17 | } 18 | 19 | /** 20 | * Hook before theme header 21 | * 22 | * @since Visual Composer Starter 2.0.0 23 | */ 24 | function visualcomposerstarter_hook_before_header() { 25 | do_action( 'visualcomposerstarter_hook_before_header' ); 26 | } 27 | /** 28 | * Hook after theme header 29 | * 30 | * @since Visual Composer Starter 2.0.0 31 | */ 32 | function visualcomposerstarter_hook_after_header() { 33 | do_action( 'visualcomposerstarter_hook_after_header' ); 34 | } 35 | 36 | /** 37 | * Hook before theme footer 38 | * 39 | * @since Visual Composer Starter 2.0.0 40 | */ 41 | function visualcomposerstarter_hook_before_footer() { 42 | do_action( 'visualcomposerstarter_hook_before_footer' ); 43 | } 44 | /** 45 | * Hook after theme footer 46 | * 47 | * @since Visual Composer Starter 2.0.0 48 | */ 49 | function visualcomposerstarter_hook_after_footer() { 50 | do_action( 'visualcomposerstarter_hook_after_footer' ); 51 | } 52 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 11 |
12 |
13 |
14 |
15 |
16 |
17 | 33 | 45 | 52 | 53 |
54 |
55 |
56 | 57 | 60 | 61 |
62 |
63 |
64 | =0.10.1" 65 | }, 66 | "files": [ 67 | "dist", 68 | "fonts", 69 | "grunt", 70 | "js/*.js", 71 | "less/**/*.less", 72 | "Gruntfile.js", 73 | "LICENSE" 74 | ], 75 | "jspm": { 76 | "main": "js/bootstrap", 77 | "shim": { 78 | "js/bootstrap": { 79 | "deps": "jquery", 80 | "exports": "$" 81 | } 82 | }, 83 | "files": [ 84 | "css", 85 | "fonts", 86 | "js" 87 | ] 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /js/bootstrap/transition.js: -------------------------------------------------------------------------------- 1 | /* ======================================================================== 2 | * Bootstrap: transition.js v3.3.7 3 | * http://getbootstrap.com/javascript/#transitions 4 | * ======================================================================== 5 | * Copyright 2011-2016 Twitter, Inc. 6 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 7 | * ======================================================================== */ 8 | 9 | 10 | +function ($) { 11 | 'use strict'; 12 | 13 | // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) 14 | // ============================================================ 15 | 16 | function transitionEnd() { 17 | var el = document.createElement('bootstrap') 18 | 19 | var transEndEventNames = { 20 | WebkitTransition : 'webkitTransitionEnd', 21 | MozTransition : 'transitionend', 22 | OTransition : 'oTransitionEnd otransitionend', 23 | transition : 'transitionend' 24 | } 25 | 26 | for (var name in transEndEventNames) { 27 | if (el.style[name] !== undefined) { 28 | return { end: transEndEventNames[name] } 29 | } 30 | } 31 | 32 | return false // explicit for ie8 ( ._.) 33 | } 34 | 35 | // http://blog.alexmaccaw.com/css-transitions 36 | $.fn.emulateTransitionEnd = function (duration) { 37 | var called = false 38 | var $el = this 39 | $(this).one('bsTransitionEnd', function () { called = true }) 40 | var callback = function () { if (!called) $($el).trigger($.support.transition.end) } 41 | setTimeout(callback, duration) 42 | return this 43 | } 44 | 45 | $(function () { 46 | $.support.transition = transitionEnd() 47 | 48 | if (!$.support.transition) return 49 | 50 | $.event.special.bsTransitionEnd = { 51 | bindType: $.support.transition.end, 52 | delegateType: $.support.transition.end, 53 | handle: function (e) { 54 | if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments) 55 | } 56 | } 57 | }) 58 | 59 | }(jQuery); 60 | -------------------------------------------------------------------------------- /js/bootstrap/transition.min.js: -------------------------------------------------------------------------------- 1 | +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); -------------------------------------------------------------------------------- /js/control-select.js: -------------------------------------------------------------------------------- 1 | (function( $ ) { 2 | function showFeaturedImageCustomHeight() { 3 | $( '#customize-control-vct_overall_site_featured_image_custom_height' ).show(); 4 | } 5 | 6 | function hideFeaturedImageCustomHeight() { 7 | $( '#customize-control-vct_overall_site_featured_image_custom_height' ).hide(); 8 | } 9 | 10 | wp.customize.controlConstructor.select = wp.customize.Control.extend({ 11 | ready: function() { 12 | 13 | this.container.on( 'change', 'select', function() { 14 | 15 | var $this = $( this ); 16 | if ( 'vct_overall_site_featured_image_height' === $this.attr( 'data-customize-setting-link' ) ) { 17 | if ( 'custom' === $this.val() ) { 18 | showFeaturedImageCustomHeight(); 19 | } else { 20 | hideFeaturedImageCustomHeight(); 21 | } 22 | 23 | // Refresh the preview 24 | wp.customize.previewer.refresh(); 25 | } 26 | }); 27 | } 28 | 29 | }); 30 | 31 | $( document ).ready(function() { 32 | if ( 'custom' !== $( 'select[data-customize-setting-link="vct_overall_site_featured_image_height"]' ).val() ) { 33 | hideFeaturedImageCustomHeight(); 34 | } 35 | }); 36 | })( window.jQuery ); 37 | -------------------------------------------------------------------------------- /js/header-scripts.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /js/slick/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "slick-carousel", 3 | "version": "1.6.0", 4 | "description": "the last carousel you'll ever need", 5 | "main": "slick/slick.js", 6 | "repository": { 7 | "type": "git", 8 | "url": "https://github.com/kenwheeler/slick.git" 9 | }, 10 | "keywords": [ 11 | "carousel", 12 | "slick", 13 | "responsive", 14 | "js", 15 | "slider" 16 | ], 17 | "author": "Ken Wheeler ", 18 | "contributors": [ 19 | { 20 | "name": "ken wheeler", 21 | "email": "ken_wheeler@me.com", 22 | "url": "http://kenwheeler.github.io/" 23 | }, 24 | { 25 | "name": "simon goellner", 26 | "email": "simey.me@gmail.com", 27 | "url": "http://simey.me" 28 | }, 29 | { 30 | "name": "ahmad el-alfy", 31 | "email": "ahmadalfy@gmail.com", 32 | "url": "http://www.alfy.me" 33 | }, 34 | { 35 | "name": "leggomuhgreggo", 36 | "email": "gwestneat@gmail.com" 37 | }, 38 | { 39 | "name": "ashley mcknight", 40 | "email": "ash@sharpteef.net" 41 | } 42 | ], 43 | "license": "MIT", 44 | "bugs": { 45 | "url": "https://github.com/kenwheeler/slick/issues" 46 | }, 47 | "dependencies": { 48 | "jquery": ">=1.7.2" 49 | } 50 | } -------------------------------------------------------------------------------- /js/toggle-switch-acf.js: -------------------------------------------------------------------------------- 1 | (function( $ ) { 2 | $( document ).ready( function() { 3 | $( '#acf-hide_page_title, #acf-hide_post_title, #acf-disable_page_header, #acf-disable_page_footer, #acf-disable_post_header, #acf-disable_post_footer' ).addClass( 'acf-toggle-wrap' ); 4 | 5 | $( '.acf-toggle-wrap .acf-checkbox-list' ).each( function() { 6 | var currentObject = $( this ); 7 | var checkboxID = currentObject.find( 'input[type=checkbox]' ).attr( 'id' ); 8 | var checkboxClone = $( '#' + checkboxID ).clone().addClass( 'onoffswitch-checkbox' ); 9 | var toggleSwitchHTML = '
' + 10 | checkboxClone[0].outerHTML + 11 | '' + 14 | '
'; 15 | 16 | currentObject.find( 'li' ).html( toggleSwitchHTML ); 17 | }); 18 | }); 19 | } )( window.jQuery ); 20 | -------------------------------------------------------------------------------- /less/bootstrap/alerts.less: -------------------------------------------------------------------------------- 1 | // 2 | // Alerts 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base styles 7 | // ------------------------- 8 | 9 | .alert { 10 | padding: @alert-padding; 11 | margin-bottom: @line-height-computed; 12 | border: 1px solid transparent; 13 | border-radius: @alert-border-radius; 14 | 15 | // Headings for larger alerts 16 | h4 { 17 | margin-top: 0; 18 | // Specified for the h4 to prevent conflicts of changing @headings-color 19 | color: inherit; 20 | } 21 | 22 | // Provide class for links that match alerts 23 | .alert-link { 24 | font-weight: @alert-link-font-weight; 25 | } 26 | 27 | // Improve alignment and spacing of inner content 28 | > p, 29 | > ul { 30 | margin-bottom: 0; 31 | } 32 | 33 | > p + p { 34 | margin-top: 5px; 35 | } 36 | } 37 | 38 | // Dismissible alerts 39 | // 40 | // Expand the right padding and account for the close button's positioning. 41 | 42 | .alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0. 43 | .alert-dismissible { 44 | padding-right: (@alert-padding + 20); 45 | 46 | // Adjust close link position 47 | .close { 48 | position: relative; 49 | top: -2px; 50 | right: -21px; 51 | color: inherit; 52 | } 53 | } 54 | 55 | // Alternate styles 56 | // 57 | // Generate contextual modifier classes for colorizing the alert. 58 | 59 | .alert-success { 60 | .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text); 61 | } 62 | 63 | .alert-info { 64 | .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text); 65 | } 66 | 67 | .alert-warning { 68 | .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text); 69 | } 70 | 71 | .alert-danger { 72 | .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text); 73 | } 74 | -------------------------------------------------------------------------------- /less/bootstrap/badges.less: -------------------------------------------------------------------------------- 1 | // 2 | // Badges 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .badge { 8 | display: inline-block; 9 | min-width: 10px; 10 | padding: 3px 7px; 11 | font-size: @font-size-small; 12 | font-weight: @badge-font-weight; 13 | color: @badge-color; 14 | line-height: @badge-line-height; 15 | vertical-align: middle; 16 | white-space: nowrap; 17 | text-align: center; 18 | background-color: @badge-bg; 19 | border-radius: @badge-border-radius; 20 | 21 | // Empty badges collapse automatically (not available in IE8) 22 | &:empty { 23 | display: none; 24 | } 25 | 26 | // Quick fix for badges in buttons 27 | .btn & { 28 | position: relative; 29 | top: -1px; 30 | } 31 | 32 | .btn-xs &, 33 | .btn-group-xs > .btn & { 34 | top: 0; 35 | padding: 1px 5px; 36 | } 37 | 38 | // Hover state, but only for links 39 | a& { 40 | &:hover, 41 | &:focus { 42 | color: @badge-link-hover-color; 43 | text-decoration: none; 44 | cursor: pointer; 45 | } 46 | } 47 | 48 | // Account for badges in navs 49 | .list-group-item.active > &, 50 | .nav-pills > .active > a > & { 51 | color: @badge-active-color; 52 | background-color: @badge-active-bg; 53 | } 54 | 55 | .list-group-item > & { 56 | float: right; 57 | } 58 | 59 | .list-group-item > & + & { 60 | margin-right: 5px; 61 | } 62 | 63 | .nav-pills > li > a > & { 64 | margin-left: 3px; 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /less/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap v3.3.7 (http://getbootstrap.com) 3 | * Copyright 2011-2016 Twitter, Inc. 4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 5 | */ 6 | 7 | // Core variables and mixins 8 | @import "variables.less"; 9 | @import "mixins.less"; 10 | 11 | // Reset and dependencies 12 | @import "normalize.less"; 13 | @import "print.less"; 14 | @import "glyphicons.less"; 15 | 16 | // Core CSS 17 | @import "scaffolding.less"; 18 | @import "type.less"; 19 | @import "code.less"; 20 | @import "grid.less"; 21 | @import "tables.less"; 22 | @import "forms.less"; 23 | @import "buttons.less"; 24 | 25 | // Components 26 | @import "component-animations.less"; 27 | @import "dropdowns.less"; 28 | @import "button-groups.less"; 29 | @import "input-groups.less"; 30 | @import "navs.less"; 31 | @import "navbar.less"; 32 | @import "breadcrumbs.less"; 33 | @import "pagination.less"; 34 | @import "pager.less"; 35 | @import "labels.less"; 36 | @import "badges.less"; 37 | @import "jumbotron.less"; 38 | @import "thumbnails.less"; 39 | @import "alerts.less"; 40 | @import "progress-bars.less"; 41 | @import "media.less"; 42 | @import "list-group.less"; 43 | @import "panels.less"; 44 | @import "responsive-embed.less"; 45 | @import "wells.less"; 46 | @import "close.less"; 47 | 48 | // Components w/ JavaScript 49 | @import "modals.less"; 50 | @import "tooltip.less"; 51 | @import "popovers.less"; 52 | @import "carousel.less"; 53 | 54 | // Utility classes 55 | @import "utilities.less"; 56 | @import "responsive-utilities.less"; 57 | 58 | // Theme 59 | @import "theme.less"; 60 | -------------------------------------------------------------------------------- /less/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; 8 | margin-bottom: @line-height-computed; 9 | list-style: none; 10 | background-color: @breadcrumb-bg; 11 | border-radius: @border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 18 | padding: 0 5px; 19 | color: @breadcrumb-color; 20 | } 21 | } 22 | 23 | > .active { 24 | color: @breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /less/bootstrap/close.less: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: (@font-size-base * 1.5); 9 | font-weight: @close-font-weight; 10 | line-height: 1; 11 | color: @close-color; 12 | text-shadow: @close-text-shadow; 13 | .opacity(.2); 14 | 15 | &:hover, 16 | &:focus { 17 | color: @close-color; 18 | text-decoration: none; 19 | cursor: pointer; 20 | .opacity(.5); 21 | } 22 | 23 | // Additional properties for button version 24 | // iOS requires the button element instead of an anchor tag. 25 | // If you want the anchor version, it requires `href="#"`. 26 | // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile 27 | button& { 28 | padding: 0; 29 | cursor: pointer; 30 | background: transparent; 31 | border: 0; 32 | -webkit-appearance: none; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /less/bootstrap/code.less: -------------------------------------------------------------------------------- 1 | // 2 | // Code (inline and block) 3 | // -------------------------------------------------- 4 | 5 | 6 | // Inline and block code styles 7 | code, 8 | kbd, 9 | pre, 10 | samp { 11 | font-family: @font-family-monospace; 12 | } 13 | 14 | // Inline code 15 | code { 16 | padding: 2px 4px; 17 | font-size: 90%; 18 | color: @code-color; 19 | background-color: @code-bg; 20 | border-radius: @border-radius-base; 21 | } 22 | 23 | // User input typically entered via keyboard 24 | kbd { 25 | padding: 2px 4px; 26 | font-size: 90%; 27 | color: @kbd-color; 28 | background-color: @kbd-bg; 29 | border-radius: @border-radius-small; 30 | box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); 31 | 32 | kbd { 33 | padding: 0; 34 | font-size: 100%; 35 | font-weight: bold; 36 | box-shadow: none; 37 | } 38 | } 39 | 40 | // Blocks of code 41 | pre { 42 | display: block; 43 | padding: ((@line-height-computed - 1) / 2); 44 | margin: 0 0 (@line-height-computed / 2); 45 | font-size: (@font-size-base - 1); // 14px to 13px 46 | line-height: @line-height-base; 47 | word-break: break-all; 48 | word-wrap: break-word; 49 | color: @pre-color; 50 | background-color: @pre-bg; 51 | border: 1px solid @pre-border-color; 52 | border-radius: @border-radius-base; 53 | 54 | // Account for some code outputs that place code tags in pre tags 55 | code { 56 | padding: 0; 57 | font-size: inherit; 58 | color: inherit; 59 | white-space: pre-wrap; 60 | background-color: transparent; 61 | border-radius: 0; 62 | } 63 | } 64 | 65 | // Enable scrollable blocks of code 66 | .pre-scrollable { 67 | max-height: @pre-scrollable-max-height; 68 | overflow-y: scroll; 69 | } 70 | -------------------------------------------------------------------------------- /less/bootstrap/component-animations.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | // Heads up! 6 | // 7 | // We don't use the `.opacity()` mixin here since it causes a bug with text 8 | // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. 9 | 10 | .fade { 11 | opacity: 0; 12 | .transition(opacity .15s linear); 13 | &.in { 14 | opacity: 1; 15 | } 16 | } 17 | 18 | .collapse { 19 | display: none; 20 | 21 | &.in { display: block; } 22 | tr&.in { display: table-row; } 23 | tbody&.in { display: table-row-group; } 24 | } 25 | 26 | .collapsing { 27 | position: relative; 28 | height: 0; 29 | overflow: hidden; 30 | .transition-property(~"height, visibility"); 31 | .transition-duration(.35s); 32 | .transition-timing-function(ease); 33 | } 34 | -------------------------------------------------------------------------------- /less/bootstrap/grid.less: -------------------------------------------------------------------------------- 1 | // 2 | // Grid system 3 | // -------------------------------------------------- 4 | 5 | 6 | // Container widths 7 | // 8 | // Set the container width, and override it for fixed navbars in media queries. 9 | 10 | .container { 11 | .container-fixed(); 12 | 13 | @media (min-width: @screen-sm-min) { 14 | width: @container-sm; 15 | } 16 | @media (min-width: @screen-md-min) { 17 | width: @container-md; 18 | } 19 | @media (min-width: @screen-lg-min) { 20 | width: @container-lg; 21 | } 22 | } 23 | 24 | 25 | // Fluid container 26 | // 27 | // Utilizes the mixin meant for fixed width containers, but without any defined 28 | // width for fluid, full width layouts. 29 | 30 | .container-fluid { 31 | .container-fixed(); 32 | } 33 | 34 | 35 | // Row 36 | // 37 | // Rows contain and clear the floats of your columns. 38 | 39 | .row { 40 | .make-row(); 41 | } 42 | 43 | 44 | // Columns 45 | // 46 | // Common styles for small and large grid columns 47 | 48 | .make-grid-columns(); 49 | 50 | 51 | // Extra small grid 52 | // 53 | // Columns, offsets, pushes, and pulls for extra small devices like 54 | // smartphones. 55 | 56 | .make-grid(xs); 57 | 58 | 59 | // Small grid 60 | // 61 | // Columns, offsets, pushes, and pulls for the small device range, from phones 62 | // to tablets. 63 | 64 | @media (min-width: @screen-sm-min) { 65 | .make-grid(sm); 66 | } 67 | 68 | 69 | // Medium grid 70 | // 71 | // Columns, offsets, pushes, and pulls for the desktop device range. 72 | 73 | @media (min-width: @screen-md-min) { 74 | .make-grid(md); 75 | } 76 | 77 | 78 | // Large grid 79 | // 80 | // Columns, offsets, pushes, and pulls for the large desktop device range. 81 | 82 | @media (min-width: @screen-lg-min) { 83 | .make-grid(lg); 84 | } 85 | -------------------------------------------------------------------------------- /less/bootstrap/jumbotron.less: -------------------------------------------------------------------------------- 1 | // 2 | // Jumbotron 3 | // -------------------------------------------------- 4 | 5 | 6 | .jumbotron { 7 | padding-top: @jumbotron-padding; 8 | padding-bottom: @jumbotron-padding; 9 | margin-bottom: @jumbotron-padding; 10 | color: @jumbotron-color; 11 | background-color: @jumbotron-bg; 12 | 13 | h1, 14 | .h1 { 15 | color: @jumbotron-heading-color; 16 | } 17 | 18 | p { 19 | margin-bottom: (@jumbotron-padding / 2); 20 | font-size: @jumbotron-font-size; 21 | font-weight: 200; 22 | } 23 | 24 | > hr { 25 | border-top-color: darken(@jumbotron-bg, 10%); 26 | } 27 | 28 | .container &, 29 | .container-fluid & { 30 | border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container 31 | padding-left: (@grid-gutter-width / 2); 32 | padding-right: (@grid-gutter-width / 2); 33 | } 34 | 35 | .container { 36 | max-width: 100%; 37 | } 38 | 39 | @media screen and (min-width: @screen-sm-min) { 40 | padding-top: (@jumbotron-padding * 1.6); 41 | padding-bottom: (@jumbotron-padding * 1.6); 42 | 43 | .container &, 44 | .container-fluid & { 45 | padding-left: (@jumbotron-padding * 2); 46 | padding-right: (@jumbotron-padding * 2); 47 | } 48 | 49 | h1, 50 | .h1 { 51 | font-size: @jumbotron-heading-font-size; 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /less/bootstrap/labels.less: -------------------------------------------------------------------------------- 1 | // 2 | // Labels 3 | // -------------------------------------------------- 4 | 5 | .label { 6 | display: inline; 7 | padding: .2em .6em .3em; 8 | font-size: 75%; 9 | font-weight: bold; 10 | line-height: 1; 11 | color: @label-color; 12 | text-align: center; 13 | white-space: nowrap; 14 | vertical-align: baseline; 15 | border-radius: .25em; 16 | 17 | // Add hover effects, but only for links 18 | a& { 19 | &:hover, 20 | &:focus { 21 | color: @label-link-hover-color; 22 | text-decoration: none; 23 | cursor: pointer; 24 | } 25 | } 26 | 27 | // Empty labels collapse automatically (not available in IE8) 28 | &:empty { 29 | display: none; 30 | } 31 | 32 | // Quick fix for labels in buttons 33 | .btn & { 34 | position: relative; 35 | top: -1px; 36 | } 37 | } 38 | 39 | // Colors 40 | // Contextual variations (linked labels get darker on :hover) 41 | 42 | .label-default { 43 | .label-variant(@label-default-bg); 44 | } 45 | 46 | .label-primary { 47 | .label-variant(@label-primary-bg); 48 | } 49 | 50 | .label-success { 51 | .label-variant(@label-success-bg); 52 | } 53 | 54 | .label-info { 55 | .label-variant(@label-info-bg); 56 | } 57 | 58 | .label-warning { 59 | .label-variant(@label-warning-bg); 60 | } 61 | 62 | .label-danger { 63 | .label-variant(@label-danger-bg); 64 | } 65 | -------------------------------------------------------------------------------- /less/bootstrap/list-group.less: -------------------------------------------------------------------------------- 1 | // 2 | // List groups 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | // 8 | // Easily usable on