Primer commit
@@ -0,0 +1,8 @@
|
||||
/*!
|
||||
* Bootstrap Reboot v4.5.2 (https://getbootstrap.com/)
|
||||
* Copyright 2011-2020 The Bootstrap Authors
|
||||
* Copyright 2011-2020 Twitter, Inc.
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
||||
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
|
||||
*/*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}
|
||||
/*# sourceMappingURL=bootstrap-reboot.min.css.map */
|
||||
@@ -0,0 +1,9 @@
|
||||
/* source: https://github.com/avinoamr/bootstrap-carousel-swipe */
|
||||
/* changes from Mobirise team */
|
||||
+function(b){if(b.fn.carousel){var c=function(a){this.$element=b(a);this.carousel=this.$element.data("bs.carousel");this.options=b.extend({},c.DEFAULTS,this.carousel.options);this.startX=this.startY=this.startTime=this.cycling=this.$active=this.$items=this.$next=this.$prev=this.dx=null;this.$element.on("touchstart",b.proxy(this.touchstart,this)).on("touchmove",b.proxy(this.touchmove,this)).on("touchend",b.proxy(this.touchend,this))};c.DEFAULTS={swipe:50};c.prototype.touchstart=function(a){if(this.options.swipe){var b=
|
||||
a.originalEvent.touches?a.originalEvent.touches[0]:a;this.dx=0;this.startX=b.pageX;this.startY=b.pageY;this.cycling=null;this.width=this.$element.width();this.startTime=a.timeStamp}};c.prototype.touchmove=function(a){if(this.options.swipe){var b=a.originalEvent.touches?a.originalEvent.touches[0]:a,c=b.pageX-this.startX,b=b.pageY-this.startY;Math.abs(c)<Math.abs(b)||(null===this.cycling&&(this.cycling=!!this.carousel.interval)&&this.carousel.pause(),a.preventDefault(),this.dx=c/(this.width||1)*100,
|
||||
this.swipe(this.dx))}};c.prototype.touchend=function(a){if(this.options.swipe&&this.$active){var c=b().add(this.$active).add(this.$prev).add(this.$next).carousel_transition(!0);a=Math.abs(this.dx/((a.timeStamp-this.startTime)/1E3));40<this.dx||0<this.dx&&a>this.options.swipe?this.carousel.prev():-40>this.dx||0>this.dx&&a>this.options.swipe?this.carousel.next():this.$active.one(b.support.transition.end,function(){c.removeClass("prev next")}).emulateTransitionEnd(1E3*this.$active.css("transition-duration").slice(0,
|
||||
-1));c.carousel_offset(!1);this.cycling&&this.carousel.cycle();this.$active=null}};c.prototype.swipe=function(a){var b=this.$active||this.getActive();if(0>a){this.$prev.carousel_offset(!1).removeClass("prev").carousel_transition(!0);if(!this.$next.length||this.$next.hasClass("active"))return;this.$next.carousel_transition(!1).addClass("next").carousel_offset(a+100)}else{this.$next.carousel_offset(!1).removeClass("next").carousel_transition(!0);if(!this.$prev.length||this.$prev.hasClass("active"))return;
|
||||
this.$prev.carousel_transition(!1).addClass("prev").carousel_offset(a-100)}b.carousel_transition(!1).carousel_offset(a)};c.prototype.getActive=function(){this.$active=this.$element.find(".item.active");this.$items=this.$active.parent().children();this.$next=this.$active.next();!this.$next.length&&this.options.wrap&&(this.$next=this.$items.first());this.$prev=this.$active.prev();!this.$prev.length&&this.options.wrap&&(this.$prev=this.$items.last());return this.$active};var e=b.fn.carousel;b.fn.carousel=
|
||||
function(){e.apply(this,arguments);return this.each(function(){var a=b(this);a.data("bs.carousel.swipe")||a.data("bs.carousel.swipe",new c(this))})};b.extend(b.fn.carousel,e);b.fn.carousel_transition=function(a){a=a?"":"none";return this.each(function(){b(this).css("-webkit-transition",a).css("transition",a)})};var f=function(){if(!window.getComputedStyle)return!1;var a=document.createElement("p"),b,c={webkitTransform:"-webkit-transform",OTransform:"-o-transform",msTransform:"-ms-transform",MozTransform:"-moz-transform",
|
||||
transform:"transform"};document.body.insertBefore(a,null);for(var d in c)void 0!==a.style[d]&&(a.style[d]="translate3d(1px,1px,1px)",b=window.getComputedStyle(a).getPropertyValue(c[d]));document.body.removeChild(a);return void 0!==b&&0<b.length&&"none"!==b}();b.fn.carousel_offset=function(a){return this.each(function(){a?f?b(this).css("transform","translate3d("+a+"%, 0, 0)"):b(this).css("left",a+"%"):b(this).css({transform:"",left:""})})};b(".carousel").carousel()}}(jQuery);
|
||||
@@ -0,0 +1,265 @@
|
||||
.navbar-dropdown {
|
||||
left: 0;
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
transition: all 0.45s ease;
|
||||
z-index: 1030;
|
||||
background: #282828; }
|
||||
.navbar-dropdown .navbar-logo {
|
||||
margin-right: 0.8rem;
|
||||
transition: margin 0.3s ease-in-out;
|
||||
vertical-align: middle; }
|
||||
.navbar-dropdown .navbar-logo img {
|
||||
height: 3.125rem;
|
||||
transition: all 0.3s ease-in-out; }
|
||||
.navbar-dropdown .navbar-logo.mbr-iconfont {
|
||||
font-size: 3.125rem;
|
||||
line-height: 3.125rem; }
|
||||
.navbar-dropdown .navbar-caption {
|
||||
font-weight: 700;
|
||||
white-space: normal;
|
||||
vertical-align: -4px;
|
||||
line-height: 3.125rem !important; }
|
||||
.navbar-dropdown .navbar-caption, .navbar-dropdown .navbar-caption:hover {
|
||||
color: inherit;
|
||||
text-decoration: none; }
|
||||
.navbar-dropdown .mbr-iconfont + .navbar-caption {
|
||||
vertical-align: -1px; }
|
||||
.navbar-dropdown.navbar-fixed-top {
|
||||
position: fixed; }
|
||||
.navbar-dropdown .navbar-brand span {
|
||||
vertical-align: -4px; }
|
||||
.navbar-dropdown.bg-color.transparent {
|
||||
background: none; }
|
||||
.navbar-dropdown.navbar-short .navbar-brand {
|
||||
padding: 0.625rem 0; }
|
||||
.navbar-dropdown.navbar-short .navbar-brand span {
|
||||
vertical-align: -1px; }
|
||||
.navbar-dropdown.navbar-short .navbar-caption {
|
||||
line-height: 2.375rem !important;
|
||||
vertical-align: -2px; }
|
||||
.navbar-dropdown.navbar-short .navbar-logo {
|
||||
margin-right: 0.5rem; }
|
||||
.navbar-dropdown.navbar-short .navbar-logo img {
|
||||
height: 2.375rem; }
|
||||
.navbar-dropdown.navbar-short .navbar-logo.mbr-iconfont {
|
||||
font-size: 2.375rem;
|
||||
line-height: 2.375rem; }
|
||||
.navbar-dropdown.navbar-short .mbr-table-cell {
|
||||
height: 3.625rem; }
|
||||
.navbar-dropdown .navbar-close {
|
||||
left: 0.6875rem;
|
||||
position: fixed;
|
||||
top: 0.75rem;
|
||||
z-index: 1000; }
|
||||
.navbar-dropdown .hamburger-icon {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
width: 16px;
|
||||
-webkit-box-shadow: 0 -6px 0 1px #282828,0 0 0 1px #282828,0 6px 0 1px #282828;
|
||||
-moz-box-shadow: 0 -6px 0 1px #282828,0 0 0 1px #282828,0 6px 0 1px #282828;
|
||||
box-shadow: 0 -6px 0 1px #282828,0 0 0 1px #282828,0 6px 0 1px #282828; }
|
||||
|
||||
.dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
|
||||
border-bottom: 0.35em solid transparent;
|
||||
border-left: 0.35em solid;
|
||||
border-right: 0;
|
||||
border-top: 0.35em solid transparent;
|
||||
margin-left: 0.3rem; }
|
||||
|
||||
.dropdown-menu .dropdown-item:focus {
|
||||
outline: 0; }
|
||||
|
||||
.nav-dropdown {
|
||||
font-size: 0.75rem;
|
||||
font-weight: 500;
|
||||
height: auto !important; }
|
||||
.nav-dropdown .nav-btn {
|
||||
padding-left: 1rem; }
|
||||
.nav-dropdown .link {
|
||||
margin: .667em 1.667em;
|
||||
font-weight: 500;
|
||||
padding: 0;
|
||||
transition: color .2s ease-in-out; }
|
||||
.nav-dropdown .link.dropdown-toggle {
|
||||
margin-right: 2.583em; }
|
||||
.nav-dropdown .link.dropdown-toggle::after {
|
||||
margin-left: .25rem;
|
||||
border-top: 0.35em solid;
|
||||
border-right: 0.35em solid transparent;
|
||||
border-left: 0.35em solid transparent;
|
||||
border-bottom: 0; }
|
||||
.nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
|
||||
margin: 0;
|
||||
padding: 0.667em 3.263em 0.667em 1.667em; }
|
||||
.nav-dropdown .link::after,
|
||||
.nav-dropdown .dropdown-item::after {
|
||||
color: inherit; }
|
||||
.nav-dropdown .btn {
|
||||
font-size: 0.75rem;
|
||||
font-weight: 700;
|
||||
letter-spacing: 0;
|
||||
margin-bottom: 0;
|
||||
padding-left: 1.25rem;
|
||||
padding-right: 1.25rem; }
|
||||
.nav-dropdown .dropdown-menu {
|
||||
border-radius: 0;
|
||||
border: 0;
|
||||
left: 0;
|
||||
margin: 0;
|
||||
padding-bottom: 1.25rem;
|
||||
padding-top: 1.25rem;
|
||||
position: relative; }
|
||||
.nav-dropdown .dropdown-submenu {
|
||||
margin-left: 0.125rem;
|
||||
top: 0; }
|
||||
.nav-dropdown .dropdown-item {
|
||||
font-weight: 500;
|
||||
line-height: 2;
|
||||
padding: 0.3846em 4.615em 0.3846em 1.5385em;
|
||||
position: relative;
|
||||
transition: color .2s ease-in-out, background-color .2s ease-in-out; }
|
||||
.nav-dropdown .dropdown-item::after {
|
||||
margin-top: -0.3077em;
|
||||
position: absolute;
|
||||
right: 1.1538em;
|
||||
top: 50%; }
|
||||
.nav-dropdown .dropdown-item:focus, .nav-dropdown .dropdown-item:hover {
|
||||
background: none; }
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.nav-dropdown.navbar-toggleable-sm {
|
||||
bottom: 0;
|
||||
display: none;
|
||||
left: 0;
|
||||
overflow-x: hidden;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
transform: translateX(-100%);
|
||||
-ms-transform: translateX(-100%);
|
||||
-webkit-transform: translateX(-100%);
|
||||
width: 18.75rem;
|
||||
z-index: 999; } }
|
||||
.nav-dropdown.navbar-toggleable-xl {
|
||||
bottom: 0;
|
||||
display: none;
|
||||
left: 0;
|
||||
overflow-x: hidden;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
transform: translateX(-100%);
|
||||
-ms-transform: translateX(-100%);
|
||||
-webkit-transform: translateX(-100%);
|
||||
width: 18.75rem;
|
||||
z-index: 999; }
|
||||
|
||||
.nav-dropdown-sm {
|
||||
display: block !important;
|
||||
overflow-x: hidden;
|
||||
overflow: auto;
|
||||
padding-top: 3.875rem; }
|
||||
.nav-dropdown-sm::after {
|
||||
content: "";
|
||||
display: block;
|
||||
height: 3rem;
|
||||
width: 100%; }
|
||||
.nav-dropdown-sm.collapse.in ~ .navbar-close {
|
||||
display: block !important; }
|
||||
.nav-dropdown-sm.collapsing, .nav-dropdown-sm.collapse.in {
|
||||
transform: translateX(0);
|
||||
-ms-transform: translateX(0);
|
||||
-webkit-transform: translateX(0);
|
||||
transition: all 0.25s ease-out;
|
||||
-webkit-transition: all 0.25s ease-out;
|
||||
background: #282828; }
|
||||
.nav-dropdown-sm.collapsing[aria-expanded="false"] {
|
||||
transform: translateX(-100%);
|
||||
-ms-transform: translateX(-100%);
|
||||
-webkit-transform: translateX(-100%); }
|
||||
.nav-dropdown-sm .nav-item {
|
||||
display: block;
|
||||
margin-left: 0 !important;
|
||||
padding-left: 0; }
|
||||
.nav-dropdown-sm .link,
|
||||
.nav-dropdown-sm .dropdown-item {
|
||||
border-top: 1px dotted rgba(255, 255, 255, 0.1);
|
||||
font-size: 0.8125rem;
|
||||
line-height: 1.6;
|
||||
margin: 0 !important;
|
||||
padding: 0.875rem 2.4rem 0.875rem 1.5625rem !important;
|
||||
position: relative;
|
||||
white-space: normal; }
|
||||
.nav-dropdown-sm .link:focus, .nav-dropdown-sm .link:hover,
|
||||
.nav-dropdown-sm .dropdown-item:focus,
|
||||
.nav-dropdown-sm .dropdown-item:hover {
|
||||
background: rgba(0, 0, 0, 0.2) !important;
|
||||
color: #c0a375; }
|
||||
.nav-dropdown-sm .nav-btn {
|
||||
position: relative;
|
||||
padding: 1.5625rem 1.5625rem 0 1.5625rem; }
|
||||
.nav-dropdown-sm .nav-btn::before {
|
||||
border-top: 1px dotted rgba(255, 255, 255, 0.1);
|
||||
content: "";
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 100%; }
|
||||
.nav-dropdown-sm .nav-btn + .nav-btn {
|
||||
padding-top: 0.625rem; }
|
||||
.nav-dropdown-sm .nav-btn + .nav-btn::before {
|
||||
display: none; }
|
||||
.nav-dropdown-sm .btn {
|
||||
padding: 0.625rem 0; }
|
||||
.nav-dropdown-sm .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
|
||||
margin-left: .25rem;
|
||||
border-top: 0.35em solid;
|
||||
border-right: 0.35em solid transparent;
|
||||
border-left: 0.35em solid transparent;
|
||||
border-bottom: 0; }
|
||||
.nav-dropdown-sm .dropdown-toggle[data-toggle="dropdown-submenu"][aria-expanded="true"]::after {
|
||||
border-top: 0;
|
||||
border-right: 0.35em solid transparent;
|
||||
border-left: 0.35em solid transparent;
|
||||
border-bottom: 0.35em solid; }
|
||||
.nav-dropdown-sm .dropdown-menu {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
border: 0;
|
||||
float: none;
|
||||
border-radius: 0;
|
||||
background: none; }
|
||||
.nav-dropdown-sm .dropdown-submenu {
|
||||
left: 100%;
|
||||
margin-left: 0.125rem;
|
||||
margin-top: -1.25rem;
|
||||
top: 0; }
|
||||
|
||||
.navbar-toggleable-sm .nav-dropdown .dropdown-menu {
|
||||
position: absolute; }
|
||||
|
||||
.navbar-toggleable-sm .nav-dropdown .dropdown-submenu {
|
||||
left: 100%;
|
||||
margin-left: 0.125rem;
|
||||
margin-top: -1.25rem;
|
||||
top: 0; }
|
||||
|
||||
.navbar-toggleable-sm.opened .nav-dropdown .dropdown-menu {
|
||||
position: relative; }
|
||||
|
||||
.navbar-toggleable-sm.opened .nav-dropdown .dropdown-submenu {
|
||||
left: 0;
|
||||
margin-left: 00rem;
|
||||
margin-top: 0rem;
|
||||
top: 0; }
|
||||
|
||||
.is-builder .nav-dropdown.collapsing {
|
||||
transition: none !important; }
|
||||
|
||||
/*# sourceMappingURL=style.css.map */
|
||||
@@ -0,0 +1,19 @@
|
||||
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(b,g,d){b instanceof String&&(b=String(b));for(var k=b.length,h=0;h<k;h++){var f=b[h];if(g.call(d,f,h,b))return{i:h,v:f}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;
|
||||
$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(b,g,d){b!=Array.prototype&&b!=Object.prototype&&(b[g]=d.value)};$jscomp.getGlobal=function(b){return"undefined"!=typeof window&&window===b?b:"undefined"!=typeof global&&null!=global?global:b};$jscomp.global=$jscomp.getGlobal(this);
|
||||
$jscomp.polyfill=function(b,g,d,k){if(g){d=$jscomp.global;b=b.split(".");for(k=0;k<b.length-1;k++){var h=b[k];h in d||(d[h]={});d=d[h]}b=b[b.length-1];k=d[b];g=g(k);g!=k&&null!=g&&$jscomp.defineProperty(d,b,{configurable:!0,writable:!0,value:g})}};$jscomp.polyfill("Array.prototype.find",function(b){return b?b:function(b,d){return $jscomp.findInternal(this,b,d).v}},"es6","es3");
|
||||
(function(b){var g=b.fn.navDropdown,d={ESC:27,LEFT:37,UP:38,RIGHT:39,DOWN:40},k={XS:544,SM:768,MD:992,LG:1200,XL:Infinity},h=function(){function a(a,e){"length"in a||(a=[a]);this.props={};this.length=a.length;e&&(this.prevItem=e,b.extend(this.props,e.props));for(e=0;e<a.length;e++)this[e]=a[e]}a.prototype.eq=function(b){return new a(this[b]?this[b]:[],this)};a.prototype.parent=function(){return new a(b(this).map(function(){var c=new a(this);return c.is(":upper")?null:b(c.is(":toggle")?this.parentNode.parentNode:
|
||||
this).closest(".dropdown").find('>[data-toggle="dropdown-submenu"]')[0]}),this)};a.prototype.parents=function(c){var e=b(this).map(function(){return(new a(this)).is(":toggle")?this.parentNode:this}).parentsUntil(".nav-dropdown",".dropdown");":upper"===c&&(e=e.last());e=e.find('>[data-toggle="dropdown-submenu"]');return new a(e,this)};a.prototype.children=function(c){var e=[];b(this).each(function(){var d=new a(this);if(d.is(":root"))var f=b(this);else if(d.is(":toggle"))f=b(this).parent().find(">.dropdown-menu");
|
||||
else return;(c?f.find("a"):d.is(":root")?f.find(">li>a"):f.find(">a, >.dropdown>a")).each(function(){c&&!this.offsetWidth&&!this.offsetHeight||this.disabled||b(this).is("[data-button]")||b(this).hasClass("disabled")||~b.inArray(this,e)||e.push(this)})});return new a(e,this)};a.prototype.root=function(){return new a(b(this).closest(".nav-dropdown"),this)};a.prototype.jump=function(c){c=c||"next";if(!this.length)return new a([],this);var e=this.eq(0);e=this.is(":flat")||e.is(":upper")?e.root().children(this.is(":flat")):
|
||||
e.parent().children();var d=b.inArray(this[0],e);if(!e.length||!~d)return new a([],this);if("next"==c){d+=1;if(d<e.length)return new a(e[d],this);c="first"}else if("prev"==c){--d;if(0<=d)return new a(e[d],this);c="last"}return"first"==c?new a(e[0],this):"last"==c?new a(e[e.length-1],this):new a([],this)};a.prototype.next=function(){return this.jump("next")};a.prototype.prev=function(){return this.jump("prev")};a.prototype.first=function(){return this.jump("first")};a.prototype.last=function(){return this.jump("last")};
|
||||
a.prototype.prop=function(a,e){return arguments.length?1<arguments.length?(this.props[a]=e,this):"object"==typeof arguments[0]?(b.extend(this.props,arguments[0]),this):a in this.props?this.props[a]:null:b.extend({},this.props)};a.prototype.removeProp=function(a){delete this.props[a];return this};a.prototype.is=function(a){for(var c=b(this),d=(a||"").split(/(?=[*#.\[:\s])/);a=d.pop();)switch(a){case ":root":if(!c.is(".nav-dropdown"))return!1;break;case ":upper":if(!c.parent().parent().is(".nav-dropdown"))return!1;
|
||||
break;case ":opened":case ":closed":if(":opened"==a!=c.parent().hasClass("open"))return!1;case ":toggle":if(!c.is('[data-toggle="dropdown-submenu"]'))return!1;break;default:if(!this.props[a])return!1}return!0};a.prototype.open=function(){this.is(":closed")&&this.click();return this};a.prototype.close=function(){this.is(":opened")&&this.click();return this};a.prototype.focus=function(){this.length&&this[0].focus();return this};a.prototype.click=function(){this.length&&b(this[0]).trigger("click");return this};
|
||||
return function(b){return new a(b)}}(),f=function(a){this._element=a;b(this._element).on("click.bs.nav-dropdown",this.toggle)};f.prototype.toggle=function(a){if(this.disabled||b(this).hasClass("disabled"))return!1;a=b(this.parentNode);var c=a.hasClass("open"),d=f._isCollapsed(b(this).closest(".nav-dropdown"));f._clearMenus(b.Event("click",{target:this,data:{toggles:d?[this]:null}}));if(c)return!1;"ontouchstart"in document.documentElement&&!a.closest(".dropdown.open").length&&(c=document.createElement("div"),
|
||||
c.className="dropdown-backdrop",b(c).insertBefore(b(this).closest(".nav-dropdown")),b(c).on("click",f._clearMenus));c={relatedTarget:this};d=b.Event("show.bs.nav-dropdown",c);a.trigger(d);if(d.isDefaultPrevented())return!1;this.focus();this.setAttribute("aria-expanded","true");a.toggleClass("open");a.trigger(b.Event("shown.bs.nav-dropdown",c));return!1};f.prototype.dispose=function(){b.removeData(this._element,"bs.nav-dropdown");b(this._element).off(".bs.nav-dropdown");this._element=null};f._clearMenus=
|
||||
function(a){a=a||{};if(3!==a.which){var c=function(){return!1};if(a.target){if(this===document)if(b(a.target).is("a:not([disabled], .disabled)"))var d=b.Event("collapse.bs.nav-dropdown",{relatedTarget:a.target});else{var g=a.targetWrapper&&b(a.targetWrapper).find(".nav-dropdown")||b(a.target).closest(".nav-dropdown");if(f._isCollapsed(g))return}else if(b(a.target).hasClass("dropdown-backdrop")&&(g=b(a.target).next(),g.is(".nav-dropdown")&&f._isCollapsed(g)))return;b(a.target).is('[data-toggle="dropdown-submenu"]')?
|
||||
c=b(a.target.parentNode).parents(".dropdown").find('>[data-toggle="dropdown-submenu"]'):b(".dropdown-backdrop").remove()}c=a.data&&a.data.toggles&&b(a.data.toggles).parent().find('[data-toggle="dropdown-submenu"]')||b.makeArray(b('[data-toggle="dropdown-submenu"]').not(c));for(g=0;g<c.length;g++){var h=c[g].parentNode,k={relatedTarget:c[g]};if(b(h).hasClass("open")&&("click"!==a.type||!/input|textarea/i.test(a.target.tagName)||!b.contains(h,a.target))){var l=b.Event("hide.bs.nav-dropdown",k);b(h).trigger(l);
|
||||
l.isDefaultPrevented()||(c[g].setAttribute("aria-expanded","false"),b(h).removeClass("open").trigger(b.Event("hidden.bs.nav-dropdown",k)))}}d&&b(document).trigger(d)}};f._dataApiKeydownHandler=function(a){if(!/input|textarea/i.test(a.target.tagName)){var c,e;for(e in d)if(c=d[e]===a.which)break;c&&(a.preventDefault(),a.stopPropagation(),a.which==d.ESC?f._isCollapsed(this)||(a=b(a.target).parents(".dropdown.open").last().find('>[data-toggle="dropdown-submenu"]'),f._clearMenus(),a.trigger("focus")):
|
||||
"A"==a.target.tagName&&(c=h(a.target),c.prop(":flat",f._isCollapsed(c.root())),c.is(":flat")?a.which===d.DOWN||a.which===d.UP?c[a.which===d.UP?"prev":"next"]().focus():a.which===d.LEFT?c.is(":opened")?c.close():c.parent().close().focus():a.which===d.RIGHT&&c.is(":toggle")&&c.open():c.is(":upper")?a.which===d.LEFT||a.which===d.RIGHT?(c[a.which===d.LEFT?"prev":"next"]().focus().open(),c.is(":toggle")&&c.close()):a.which!==d.DOWN&&a.which!==d.UP||!c.is(":toggle")||c.children()[a.which===d.DOWN?"first":
|
||||
"last"]().focus():a.which===d.LEFT?(a=c.parent(),a.is(":upper")?a.close().prev().focus().open():a.focus().close()):a.which===d.RIGHT?(a=c.children(),a.length?(c.open(),a.first().focus()):c.parents(":upper").close().next().focus().open()):a.which!==d.DOWN&&a.which!==d.UP||c[a.which===d.UP?"prev":"next"]().focus()))}};f._isCollapsed=function(a){var b;a.length&&(a=a[0]);return a&&(b=/navbar-toggleable-(xs|sm|md|lg|xl)/.exec(a.className))&&window.innerWidth<k[b[1].toUpperCase()]};f._dataApiResizeHandler=
|
||||
function(){b(".nav-dropdown").each(function(){var a=f._isCollapsed(this);b(this).find(".dropdown").removeClass("open");b(this).find('[aria-expanded="true"]').attr("aria-expanded","false");var c=b(".dropdown-backdrop")[0];c&&c.parentNode.removeChild(c);a!=b(this).hasClass("nav-dropdown-sm")&&(a?b(this).addClass("nav-dropdown-sm"):b(this).removeClass("nav-dropdown-sm"))})};b.fn.navDropdown=function(a){return this.each(function(){var c=b(this).data("bs.nav-dropdown");c||b(this).data("bs.nav-dropdown",
|
||||
c=new f(this));if("string"===typeof a){if(void 0===c[a])throw Error('No method named "'+a+'"');c[a].call(this)}})};b.fn.navDropdown.noConflict=function(){b.fn.navDropdown=g;return this};b.fn.navDropdown.Constructor=f;b.fn.navDropdown.$$=h;b(window).on("resize.bs.nav-dropdown.data-api ready.bs.nav-dropdown.data-api",f._dataApiResizeHandler);b(document).on("keydown.bs.nav-dropdown.data-api",".nav-dropdown",f._dataApiKeydownHandler).on("collapse.bs.navbar-dropdown",f._clearMenus).on("click.bs.nav-dropdown.data-api",
|
||||
f._clearMenus).on("click.bs.nav-dropdown.data-api",'[data-toggle="dropdown-submenu"]',f.prototype.toggle).on("click.bs.nav-dropdown.data-api",".dropdown form",function(a){a.stopPropagation()});b(window).trigger("ready.bs.nav-dropdown")})(jQuery);
|
||||
@@ -0,0 +1,6 @@
|
||||
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(a,d,b){a instanceof String&&(a=String(a));for(var c=a.length,e=0;e<c;e++){var f=a[e];if(d.call(b,f,e,a))return{i:e,v:f}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;
|
||||
$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(a,d,b){a!=Array.prototype&&a!=Object.prototype&&(a[d]=b.value)};$jscomp.getGlobal=function(a){return"undefined"!=typeof window&&window===a?a:"undefined"!=typeof global&&null!=global?global:a};$jscomp.global=$jscomp.getGlobal(this);
|
||||
$jscomp.polyfill=function(a,d,b,c){if(d){b=$jscomp.global;a=a.split(".");for(c=0;c<a.length-1;c++){var e=a[c];e in b||(b[e]={});b=b[e]}a=a[a.length-1];c=b[a];d=d(c);d!=c&&null!=d&&$jscomp.defineProperty(b,a,{configurable:!0,writable:!0,value:d})}};$jscomp.polyfill("Array.prototype.find",function(a){return a?a:function(a,b){return $jscomp.findInternal(this,a,b).v}},"es6","es3");
|
||||
jQuery(function(a){function d(f){"resize"===f.type&&(a(c.BODY).removeClass(b.DROPDOWN_OPEN),a(c.BASE).find(".navbar-collapse").removeClass("show"),a(c.BASE).removeClass(b.OPENED).find(c.TOGGLER).each(function(){a(a(this).attr("data-target")).removeClass(b.IN).add(this).attr("aria-expanded","false")}));var d=a(this).scrollTop();a(c.BASE).each(function(){a(this).is(c.FIXED_TOP)&&(a(this).is(c.TRANSPARENT)&&!a(this).hasClass(b.OPENED)&&(0<d?a(this).removeClass(b.BG_COLOR):a(this).addClass(b.BG_COLOR)),
|
||||
0<d?a(this).addClass(b.SHORT):a(this).removeClass(b.SHORT))})}var b={IN:"in",OPENED:"opened",BG_COLOR:"bg-color",DROPDOWN_OPEN:"navbar-dropdown-open",SHORT:"navbar-short"},c={BODY:"body",BASE:".navbar-dropdown",TOGGLER:'.navbar-toggler[aria-expanded="true"]',TRANSPARENT:".transparent",FIXED_TOP:".navbar-fixed-top"},e;a(window).on("scroll.bs.navbar-dropdown.data-api resize.bs.navbar-dropdown.data-api",function(a){clearTimeout(e);e=setTimeout(function(){d(a)},10)}).trigger("scroll.bs.navbar-dropdown.data-api");
|
||||
a(document).on("click.bs.navbar-dropdown.data-api",c.BASE,function(a){a.targetWrapper=this}).on("show.bs.collapse hide.bs.collapse",function(d){a(d.target).closest(c.BASE).each(function(){"show"==d.type?(a(c.BODY).addClass(b.DROPDOWN_OPEN),a(this).addClass(b.OPENED)):(a(c.BODY).removeClass(b.DROPDOWN_OPEN),a(this).removeClass(b.OPENED),a(window).trigger("scroll.bs.navbar-dropdown.data-api"),a(this).trigger("collapse.bs.navbar-dropdown"))})}).on("collapse.bs.nav-dropdown",function(b){a(b.relatedTarget).closest(c.BASE).find(c.TOGGLER).trigger("click")})});
|
||||
@@ -0,0 +1,13 @@
|
||||
|
||||
(function(b){function y(a){b(a.target).closest(".mbr-slider").hasClass("in")&&a.target.playVideo()}function m(a){var c=b(a.target);c[0]._masonryProgress||(c[0]._masonryProgress=!0,"undefined"!==typeof b.fn.masonry&&c.outerFind(".mbr-gallery").each(function(){var a=b(this).find(".mbr-gallery-row");a.one("layoutComplete",function(){c[0]._masonryProgress=!1});a.imagesLoaded().progress(function(){a.masonry({itemSelector:".mbr-gallery-item:not(.mbr-gallery-item__hided)",percentPosition:!0,horizontalOrder:!0,
|
||||
transitionDuration:0});a.masonry("reloadItems")});a.off("filter");a.on("filter",function(){a.masonry("reloadItems");a.masonry("layout");b(window).trigger("update.parallax")})}))}function q(a,c,b,d,f){var g=a.find("img");if(g[0].complete&&50<g[0].naturalWidth&&50<g[0].naturalHeight)r(g,a,c,b,d,f);else g.one("load",function(){r(g,a,c,b,d,f)})}function r(a,c,b,d,f,g){var l=a[0].naturalWidth,p=a[0].naturalHeight;d=d/b>l/p?(b-2*g)*l/p:d-2*g;d=d>=l?l:d;b=(b-d*p/l)/2;a.css({width:parseInt(d),height:d*p/
|
||||
l});c.css("top",b+f)}function z(a,c,e,d,f,g){a.find(".modal-dialog .carousel-item").each(function(){if(!g&&!b(this)[0].classList.contains("carousel-item-next")&&!b(this)[0].classList.contains("carousel-item-prev")||g&&!b(this)[0].classList.contains("active"))b(this)[0].classList.contains("video-container")?b(this).css({top:d,height:e-2*d-2*f}):q(b(this),e,c,d,f)})}function t(){var a=b(window).width()-0,c=b(window).height()-0;if(h){var e,d=!1;h.find(".modal-dialog .carousel-item.carousel-item-next, .modal-dialog .carousel-item.carousel-item-prev").length?
|
||||
e=h.find(".modal-dialog .carousel-item.carousel-item-next, .modal-dialog .carousel-item.carousel-item-prev"):(e=h.find(".modal-dialog .carousel-item.active"),d=!0);e[0].classList.contains("video-container")?e.css({top:0,height:c-0-20}):q(e,c,a,0,10);clearTimeout(u);u=setTimeout(z,200,h,a,c,0,10,d)}}var k=b("html").hasClass("is-builder");if(!k){var v=document.createElement("script");v.src="https://www.youtube.com/iframe_api";var w=document.getElementsByTagName("script")[0];w.parentNode.insertBefore(v,
|
||||
w);var n=[];b(".carousel-item.video-container img").css("display","none");window.onYouTubeIframeAPIReady=function(){var a=a||{};a.YTAPIReady||(a.YTAPIReady=!0,jQuery(document).trigger("YTAPIReady"));b(".video-slide").each(function(a){b(".video-container").eq(a).append('<div id ="mbr-video-'+a+'" class="mbr-background-video" data-video-num="'+a+'"></div>').append('<div class="item-overlay"></div>');b(this).attr("data-video-num",a);if(-1!==b(this).attr("data-video-url").indexOf("vimeo.com")){var e=
|
||||
{id:b(this).attr("data-video-url"),width:"100%",height:"100%",loop:!0};a=new Vimeo.Player("mbr-video-"+a,e);a.playVideo=Vimeo.play}else{var e=YT.Player,d;d=b(this).attr("data-video-url");d="false"===d?!1:(d=/(?:\?v=|\/embed\/|\.be\/)([-a-z0-9_]+)/i.exec(d)||/^([-a-z0-9_]+)$/i.exec(d))?d[1]:!1;a=new e("mbr-video-"+a,{height:"100%",width:"100%",videoId:d,events:{onReady:y},playerVars:{rel:0}})}n.push(a)})}}b(document).on("add.cards",function(a){var c=b(a.target);c.on("click",".mbr-gallery-filter li",
|
||||
function(a){a.preventDefault();var d=b(this).closest("li");d.parent().find("li").removeClass("active");d.addClass("active");a=d.closest("section").find(".mbr-gallery-row");var f=b(this)[0].textContent.trim();c.find(".mbr-gallery-item").each(function(a,c){var e=b(this),h=e.attr("data-tags").split(",").map(function(a){return a.trim()});-1!==b.inArray(f,h)||d.hasClass("mbr-gallery-filter-all")?e.removeClass("mbr-gallery-item__hided"):(e.addClass("mbr-gallery-item__hided"),e.css("left","300px"))});a.closest(".mbr-gallery-row").trigger("filter")})});
|
||||
if(k)b(document).on("changeButtonColor.cards",function(a){var c=b(a.target);if(0<c.find(".mbr-gallery-filter").length&&b(a.target).find(".mbr-gallery-filter").hasClass("gallery-filter-active")){var e=(c.find(".mbr-gallery-filter .mbr-gallery-filter-all").find("a").attr("class")||"").replace(/(^|\s)active(\s|$)/," ").trim();c.find(".mbr-gallery-filter ul li:not(.mbr-gallery-filter-all) a").attr("class",e)}m(a)});b(document).on("add.cards changeParameter.cards",function(a){var c=b(a.target),e=[];c.find(".mbr-gallery-item").each(function(a){(b(this).attr("data-tags")||
|
||||
"").trim().split(",").map(function(a){a=a.trim();-1===b.inArray(a,e)&&e.push(a)})});if(0<c.find(".mbr-gallery-filter").length&&b(a.target).find(".mbr-gallery-filter").hasClass("gallery-filter-active")){var d="";c.find(".mbr-gallery-filter ul li:not(.mbr-gallery-filter-all)").remove();var f=c.find(".mbr-gallery-filter .mbr-gallery-filter-all").clone();f.find("a").removeClass("active");e.map(function(a){f.find("a").length?f.find("a").text(a):f.text(a);d+="<li>"+f.html()+"</li>"});f.remove();c.find(".mbr-gallery-filter ul").append(d)}m(a)});
|
||||
b(document).on("change.cards",function(a){m(a)});b(document).on("lazyload",function(a){m(a);b(window).scrollEnd(function(){m(a)},250)});b(".mbr-gallery-item").on("click","a",function(a){a.stopPropagation()});var x,u,h,k=b(document).find(".mbr-gallery");k.on("show.bs.modal",function(a){clearTimeout(x);x=setTimeout(function(){var c=b(a.relatedTarget).parent().attr("data-video-num"),c=b(a.target).find(".carousel-item .mbr-background-video[data-video-num="+c+"]");b(a.target).find(".carousel-item .mbr-background-video");
|
||||
0<c.length&&c.closest(".carousel-item").hasClass("active")&&(c=n[+c.attr("data-video-num")],c.playVideo?c.playVideo():c.play())},500);h=b(a.target);t()});k.on("slide.bs.carousel",function(a){a=b(a.target).find(".carousel-item.active .mbr-background-video");0<a.length&&(a=n[+a.attr("data-video-num")],a.pauseVideo?a.pauseVideo():a.pause())});b(window).on("resize load",t);k.on("slid.bs.carousel",function(a){a=b(a.target).find(".carousel-item.active .mbr-background-video");0<a.length&&(a=n[+a.attr("data-video-num")],
|
||||
a.playVideo?a.playVideo():a.play())});k.on("hide.bs.modal",function(a){n.map(function(a,b){a.pauseVideo?a.pauseVideo():a.pause()});h=null})})(jQuery);
|
||||
@@ -0,0 +1,440 @@
|
||||
/*-------
|
||||
|
||||
Gallery
|
||||
|
||||
-------*/
|
||||
.mbr-gallery .mbr-gallery-item {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 25%;
|
||||
cursor: pointer; }
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.mbr-gallery .mbr-gallery-item {
|
||||
width: 50%; } }
|
||||
@media (max-width: 400px) {
|
||||
.mbr-gallery .mbr-gallery-item {
|
||||
width: 100%; } }
|
||||
.mbr-gallery .icon-focus,
|
||||
.mbr-gallery .icon-video {
|
||||
position: absolute;
|
||||
top: calc(50% - 32px);
|
||||
left: calc(50% - 24px);
|
||||
font-family: 'MobiriseIcons' !important;
|
||||
font-size: 3rem !important;
|
||||
color: #fff;
|
||||
opacity: 0;
|
||||
transition: .2s opacity ease-in-out;
|
||||
z-index: 5; }
|
||||
|
||||
.mbr-gallery .icon-focus::before {
|
||||
content: '\e96b'; }
|
||||
|
||||
.mbr-gallery .icon-video::before {
|
||||
content: '\e95c'; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item > div:hover .icon-focus,
|
||||
.mbr-gallery .mbr-gallery-item > div:hover .icon-video {
|
||||
opacity: 1; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item img {
|
||||
width: 100%;
|
||||
opacity: 1;
|
||||
-webkit-transition: .2s opacity ease-in-out;
|
||||
transition: .2s opacity ease-in-out; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item > div:hover img {
|
||||
opacity: 1; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item > div {
|
||||
background: #fff;
|
||||
display: block;
|
||||
outline: none;
|
||||
position: relative; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item .icon {
|
||||
-webkit-transform: translateX(-50%) translateY(-50%);
|
||||
-webkit-transition: .2s opacity ease-in-out;
|
||||
color: #000;
|
||||
font-size: 30px;
|
||||
height: 69px;
|
||||
left: 50%;
|
||||
opacity: 0;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateX(-50%) translateY(-50%);
|
||||
transition: .2s opacity ease-in-out;
|
||||
width: 69px; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item .icon::after,
|
||||
.mbr-gallery .mbr-gallery-item .icon::before {
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
height: 69px;
|
||||
width: 1px;
|
||||
margin-left: 34.5px;
|
||||
background-color: #fff; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item .icon::after {
|
||||
width: 69px;
|
||||
height: 1px;
|
||||
margin-left: 0;
|
||||
margin-top: 34.5px; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item > div:hover .icon {
|
||||
opacity: 1; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item > div:hover::before {
|
||||
opacity: .9; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item > div:hover .mbr-gallery-title {
|
||||
background: transparent !important; }
|
||||
|
||||
/* remove spacing */
|
||||
.mbr-gallery .mbr-gallery-row.no-gutter {
|
||||
margin: 0; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-row.no-gutter .mbr-gallery-item {
|
||||
padding: 0; }
|
||||
|
||||
/* container */
|
||||
.mbr-gallery .container.mbr-gallery-layout-default {
|
||||
padding: 93px 0; }
|
||||
|
||||
/* fix horizontal scrollbar */
|
||||
.mbr-gallery .mbr-gallery-layout-article,
|
||||
.mbr-gallery .mbr-gallery-layout-default {
|
||||
overflow: hidden; }
|
||||
|
||||
/* lightbox */
|
||||
.mbr-gallery .modal {
|
||||
position: fixed;
|
||||
overflow: hidden;
|
||||
padding-right: 0 !important; }
|
||||
|
||||
.mbr-gallery .modal-content {
|
||||
border-radius: 0;
|
||||
border: none;
|
||||
background: transparent; }
|
||||
|
||||
.mbr-gallery .modal-body {
|
||||
padding: 0; }
|
||||
|
||||
.mbr-gallery .modal-body img {
|
||||
width: 100%; }
|
||||
|
||||
.mbr-gallery .modal .close {
|
||||
position: fixed;
|
||||
background: #1b1b1b;
|
||||
opacity: .5;
|
||||
font-size: 35px;
|
||||
font-weight: 300;
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
border-radius: 50%;
|
||||
color: #fff;
|
||||
top: 2.5rem;
|
||||
right: 2.5rem;
|
||||
line-height: 70px;
|
||||
border: none;
|
||||
text-align: center;
|
||||
text-shadow: none;
|
||||
z-index: 5;
|
||||
-webkit-transition: opacity .3s ease;
|
||||
-moz-transition: opacity .3s ease;
|
||||
-o-transition: opacity .3s ease;
|
||||
transition: opacity .3s ease;
|
||||
font-family: 'MobiriseIcons'; }
|
||||
.mbr-gallery .modal .close::before {
|
||||
content: '\e91a'; }
|
||||
|
||||
.mbr-gallery .modal .close:hover {
|
||||
opacity: 1;
|
||||
background: #000;
|
||||
color: #fff; }
|
||||
|
||||
.mbr-gallery .modal-dialog {
|
||||
max-width: 100% !important; }
|
||||
|
||||
.mbr-gallery .modal.in .modal-dialog {
|
||||
margin: 0 auto; }
|
||||
|
||||
/* modal back color opacity */
|
||||
.modal-backdrop.in {
|
||||
opacity: .8;
|
||||
filter: alpha(opacity=80); }
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.mbr-gallery .carousel-control,
|
||||
.mbr-gallery .carousel-indicators,
|
||||
.mbr-gallery .modal .close {
|
||||
position: fixed; } }
|
||||
/* fix fade in effect */
|
||||
.mbr-gallery .modal.fade .modal-dialog {
|
||||
-webkit-transition: margin-top .3s ease-out;
|
||||
-moz-transition: margin-top .3s ease-out;
|
||||
-o-transition: margin-top .3s ease-out;
|
||||
transition: margin-top .3s ease-out; }
|
||||
|
||||
.mbr-gallery .modal.fade .modal-dialog,
|
||||
.mbr-gallery .modal.in .modal-dialog {
|
||||
-webkit-transform: none;
|
||||
-ms-transform: none;
|
||||
-o-transform: none;
|
||||
transform: none; }
|
||||
|
||||
/*-------
|
||||
|
||||
Slider
|
||||
|
||||
-------*/
|
||||
.mbr-slider .carousel-inner > .active,
|
||||
.mbr-slider .carousel-inner > .next,
|
||||
.mbr-slider .carousel-inner > .prev {
|
||||
display: table; }
|
||||
|
||||
.mbr-slider .carousel-control {
|
||||
position: absolute;
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
top: 50%;
|
||||
margin-top: -35px;
|
||||
line-height: 70px;
|
||||
border-radius: 50%;
|
||||
font-size: 35px;
|
||||
border: 0;
|
||||
opacity: .5;
|
||||
text-shadow: none;
|
||||
z-index: 5;
|
||||
color: #fff;
|
||||
-webkit-transition: all .2s ease-in-out 0s;
|
||||
-o-transition: all .2s ease-in-out 0s;
|
||||
transition: all .2s ease-in-out 0s; }
|
||||
|
||||
.mbr-gallery .mbr-slider .carousel-control {
|
||||
position: fixed; }
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.mbr-gallery .mbr-slider .carousel-control {
|
||||
bottom: 2.5rem;
|
||||
margin-top: 0;
|
||||
top: auto;
|
||||
z-index: 17; } }
|
||||
.mbr-gallery .mbr-slider .carousel-inner > .active {
|
||||
display: block; }
|
||||
|
||||
.mbr-slider .carousel-control.left {
|
||||
left: 0;
|
||||
margin-left: 2.5rem; }
|
||||
|
||||
.mbr-slider .carousel-control.right {
|
||||
right: 0;
|
||||
margin-right: 2.5rem; }
|
||||
|
||||
.mbr-slider .carousel-control .icon-next,
|
||||
.mbr-slider .carousel-control .icon-prev {
|
||||
margin-top: -18px;
|
||||
font-size: 40px;
|
||||
line-height: 27px; }
|
||||
|
||||
.mbr-slider .carousel-control:hover {
|
||||
background: #1b1b1b;
|
||||
color: #fff;
|
||||
opacity: 1; }
|
||||
|
||||
.mbr-slider .carousel-indicators {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
margin-bottom: 1.5rem !important; }
|
||||
|
||||
@media (max-width: 543px) {
|
||||
.mbr-slider .carousel-indicators {
|
||||
display: none; } }
|
||||
.carousel-indicators .active,
|
||||
.carousel-indicators li {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
margin: 3px;
|
||||
background: #1b1b1b;
|
||||
opacity: .5; }
|
||||
|
||||
.carousel-indicators .active {
|
||||
background: #fff; }
|
||||
|
||||
.carousel-indicators li {
|
||||
max-width: 15px;
|
||||
max-height: 15px;
|
||||
border-radius: 50%; }
|
||||
|
||||
.container .carousel-indicators {
|
||||
margin-bottom: 3px; }
|
||||
|
||||
.mbr-gallery .mbr-slider .carousel-indicators {
|
||||
position: fixed;
|
||||
margin-bottom: 2.5rem !important; }
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.mbr-gallery .mbr-slider .carousel-indicators {
|
||||
margin-bottom: 3.625rem !important;
|
||||
padding-left: 2.5rem;
|
||||
padding-right: 2.5rem; } }
|
||||
.mbr-slider .carousel-indicators .active,
|
||||
.mbr-slider .carousel-indicators li {
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
margin: 3px;
|
||||
background: #1b1b1b;
|
||||
border: 4px solid #1b1b1b;
|
||||
opacity: .5; }
|
||||
|
||||
.mbr-slider .carousel-indicators .active {
|
||||
background: #fff; }
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.mbr-slider .carousel-control {
|
||||
top: auto;
|
||||
bottom: 20px; }
|
||||
|
||||
.mbr-slider > .container .carousel-control {
|
||||
margin-bottom: 0; } }
|
||||
/* boxed slider */
|
||||
.mbr-slider > .boxed-slider {
|
||||
position: relative;
|
||||
padding: 93px 0; }
|
||||
|
||||
.mbr-slider > .boxed-slider > div {
|
||||
position: relative; }
|
||||
|
||||
.mbr-slider > .container img {
|
||||
width: 100%; }
|
||||
|
||||
.mbr-slider > .container img + .row {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
-webkit-transform: translateY(-50%);
|
||||
-moz-transform: translateY(-50%);
|
||||
transform: translateY(-50%);
|
||||
z-index: 2; }
|
||||
|
||||
.mbr-slider .mbr-section {
|
||||
padding: 0;
|
||||
background-attachment: scroll; }
|
||||
|
||||
.mbr-slider .mbr-table-cell {
|
||||
padding: 0; }
|
||||
|
||||
.mbr-slider > .container .carousel-indicators {
|
||||
margin-bottom: 3px; }
|
||||
|
||||
/* article slider */
|
||||
.mbr-slider > .article-slider .mbr-section,
|
||||
.mbr-slider > .article-slider .mbr-section .mbr-table-cell {
|
||||
padding-top: 0;
|
||||
padding-bottom: 0; }
|
||||
|
||||
.modal-backdrop.show {
|
||||
opacity: .7; }
|
||||
|
||||
.video-container .mbr-background-video iframe {
|
||||
width: 100%;
|
||||
height: 100%; }
|
||||
|
||||
.mbr-gallery-item__hided {
|
||||
position: absolute !important;
|
||||
left: 0 !important;
|
||||
width: 0 !important;
|
||||
height: 0;
|
||||
padding: 0 !important; }
|
||||
|
||||
.mbr-gallery-item__hided img {
|
||||
display: none !important; }
|
||||
|
||||
.mbr-gallery-item__hided span {
|
||||
display: none !important; }
|
||||
|
||||
.mbr-gallery-filter {
|
||||
padding-top: 30px;
|
||||
padding-bottom: 30px;
|
||||
text-align: center; }
|
||||
.mbr-gallery-filter li {
|
||||
display: inline-block;
|
||||
padding: 5px 0;
|
||||
transition: all .3s ease-out; }
|
||||
.mbr-gallery-filter li .btn {
|
||||
cursor: pointer; }
|
||||
.mbr-gallery-filter.gallery-filter__bg li {
|
||||
color: #fff; }
|
||||
.mbr-gallery-filter.gallery-filter__bg .active {
|
||||
color: #000;
|
||||
background-color: #fff; }
|
||||
.mbr-gallery-filter ul {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
padding-left: 0;
|
||||
margin-bottom: 0;
|
||||
list-style: none; }
|
||||
|
||||
.mbr-gallery-item > div {
|
||||
position: relative; }
|
||||
|
||||
.mbr-gallery-item--p1 {
|
||||
padding: 0.5rem; }
|
||||
|
||||
.mbr-gallery-item--p2 {
|
||||
padding: 1rem; }
|
||||
|
||||
.mbr-gallery-item--p3 {
|
||||
padding: 1.5rem; }
|
||||
|
||||
.mbr-gallery-item--p4 {
|
||||
padding: 2rem; }
|
||||
|
||||
.mbr-gallery-item--p5 {
|
||||
padding: 2.5rem; }
|
||||
|
||||
.mbr-gallery-item--p6 {
|
||||
padding: 3rem; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item--p4 {
|
||||
width: 33.333%; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item--p6, .mbr-gallery .mbr-gallery-item--p5 {
|
||||
width: 50%; }
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.mbr-gallery-item--p1 {
|
||||
padding: 0.5rem; }
|
||||
|
||||
.mbr-gallery-item--p2 {
|
||||
padding: 0.8rem; }
|
||||
|
||||
.mbr-gallery-item--p3 {
|
||||
padding: 1rem; }
|
||||
|
||||
.mbr-gallery-item--p4 {
|
||||
padding: 1.5rem; }
|
||||
|
||||
.mbr-gallery-item--p5 {
|
||||
padding: 1.8rem; }
|
||||
|
||||
.mbr-gallery-item--p6 {
|
||||
padding: 2rem; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item--p2,
|
||||
.mbr-gallery .mbr-gallery-item--p3 {
|
||||
width: 50%; }
|
||||
|
||||
.mbr-gallery .mbr-gallery-item--p6,
|
||||
.mbr-gallery .mbr-gallery-item--p5,
|
||||
.mbr-gallery .mbr-gallery-item--p4 {
|
||||
width: 100%; } }
|
||||
@media (max-width: 400px) {
|
||||
.mbr-gallery .mbr-gallery-item--p3,
|
||||
.mbr-gallery .mbr-gallery-item--p2,
|
||||
.mbr-gallery .mbr-gallery-item--p1 {
|
||||
width: 100%; } }
|
||||
|
||||
/*# sourceMappingURL=style.css.map */
|
||||
|
After Width: | Height: | Size: 137 KiB |
|
After Width: | Height: | Size: 199 KiB |
|
After Width: | Height: | Size: 199 KiB |
|
After Width: | Height: | Size: 207 KiB |
|
After Width: | Height: | Size: 192 KiB |
|
After Width: | Height: | Size: 202 KiB |
|
After Width: | Height: | Size: 195 KiB |
|
After Width: | Height: | Size: 91 KiB |
|
After Width: | Height: | Size: 98 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 90 KiB |
|
After Width: | Height: | Size: 100 KiB |
|
After Width: | Height: | Size: 186 KiB |
|
After Width: | Height: | Size: 73 KiB |
|
After Width: | Height: | Size: 194 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 139 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 37 KiB |
|
After Width: | Height: | Size: 192 KiB |
|
After Width: | Height: | Size: 30 KiB |
|
After Width: | Height: | Size: 116 KiB |
|
After Width: | Height: | Size: 398 KiB |
|
After Width: | Height: | Size: 196 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 240 KiB |
|
After Width: | Height: | Size: 73 KiB |
|
After Width: | Height: | Size: 78 KiB |
|
After Width: | Height: | Size: 79 KiB |
|
After Width: | Height: | Size: 86 KiB |
|
After Width: | Height: | Size: 112 KiB |
|
After Width: | Height: | Size: 122 KiB |
|
After Width: | Height: | Size: 231 KiB |
|
After Width: | Height: | Size: 141 KiB |
|
After Width: | Height: | Size: 106 KiB |
|
After Width: | Height: | Size: 120 KiB |
|
After Width: | Height: | Size: 54 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
After Width: | Height: | Size: 77 KiB |
|
After Width: | Height: | Size: 235 KiB |
|
After Width: | Height: | Size: 198 KiB |
|
After Width: | Height: | Size: 59 KiB |
|
After Width: | Height: | Size: 82 KiB |
|
After Width: | Height: | Size: 194 KiB |
|
After Width: | Height: | Size: 191 KiB |
|
After Width: | Height: | Size: 195 KiB |
|
After Width: | Height: | Size: 302 KiB |
|
After Width: | Height: | Size: 268 KiB |
|
After Width: | Height: | Size: 326 KiB |
|
After Width: | Height: | Size: 198 KiB |
|
After Width: | Height: | Size: 194 KiB |
|
After Width: | Height: | Size: 3.7 KiB |
|
After Width: | Height: | Size: 202 KiB |
|
After Width: | Height: | Size: 190 KiB |
|
After Width: | Height: | Size: 96 KiB |
|
After Width: | Height: | Size: 61 KiB |
|
After Width: | Height: | Size: 192 KiB |
|
After Width: | Height: | Size: 197 KiB |
|
After Width: | Height: | Size: 193 KiB |
|
After Width: | Height: | Size: 198 KiB |
|
After Width: | Height: | Size: 196 KiB |
|
After Width: | Height: | Size: 195 KiB |
|
After Width: | Height: | Size: 194 KiB |
|
After Width: | Height: | Size: 195 KiB |
|
After Width: | Height: | Size: 89 KiB |
|
After Width: | Height: | Size: 185 KiB |
|
After Width: | Height: | Size: 187 KiB |
|
After Width: | Height: | Size: 214 KiB |
|
After Width: | Height: | Size: 244 KiB |
|
After Width: | Height: | Size: 196 KiB |
|
After Width: | Height: | Size: 545 KiB |
|
After Width: | Height: | Size: 577 KiB |
|
After Width: | Height: | Size: 190 KiB |
|
After Width: | Height: | Size: 361 KiB |
|
After Width: | Height: | Size: 203 KiB |
|
After Width: | Height: | Size: 246 KiB |
|
After Width: | Height: | Size: 247 KiB |
|
After Width: | Height: | Size: 248 KiB |
|
After Width: | Height: | Size: 196 KiB |
|
After Width: | Height: | Size: 110 KiB |
|
After Width: | Height: | Size: 38 KiB |
|
After Width: | Height: | Size: 215 KiB |
|
After Width: | Height: | Size: 576 KiB |
|
After Width: | Height: | Size: 209 KiB |
|
After Width: | Height: | Size: 23 KiB |
|
After Width: | Height: | Size: 678 KiB |
|
After Width: | Height: | Size: 222 KiB |