ae0fad36 by Jeff Balicki

ffff

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent c0fcb683
......@@ -15521,11 +15521,42 @@ element.style {
transition: 0.3s;
}
.link-block .text {
position: relative;
}
.link-block .text p:last-child {
padding-bottom: 40px;
}
.link-block .text a {
background-color: transparent !important;
text-transform: uppercase;
max-width: unset;
float: right;
border: 1px solid #183668 !important;
color: #183668 !important;
transition: ease-out 0.5s;
position: absolute;
bottom: 25px;
left: 45px;
padding: 10px 20px;
text-decoration: none;
}
.link-block .text a:hover {
background-color: transparent !important;
color: #fff !important;
box-shadow: inset 200px 0 0 0 #183668;
transition: ease-out 0.5s;
}
body, html {
overflow-x: hidden;
width: 100vw;
}
html {
scroll-padding-top: 110px;
}
#full-width-page-wrapper:not(.home-page) {
padding-bottom: 200px;
padding-top: 130px;
......@@ -15707,6 +15738,23 @@ div#error-404-wrapper {
}
}
.menu-item.menu-item-type-custom.menu-item-object-custom a {
background-color: #183668 !important;
text-transform: uppercase;
max-width: unset;
float: right;
border: 0px solid #183668 !important;
color: #fff !important;
transition: ease-out 0.5s;
padding: 10px 20px;
text-decoration: none;
}
.menu-item.menu-item-type-custom.menu-item-object-custom a:hover {
background-color: #3EAF49 !important;
color: #fff !important;
transition: ease-out 0.5s;
}
.has-blue-color,
.has-blue-color:visited {
color: #0d6efd;
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -38,18 +38,18 @@ $container = get_theme_mod( 'understrap_container_type' );
<!-- The WordPress Menu goes here -->
<?php
// wp_nav_menu(
// array(
// 'theme_location' => 'primary',
// 'container_class' => 'collapse navbar-collapse',
// 'container_id' => 'navbarNavDropdown',
// 'menu_class' => 'navbar-nav ms-auto',
// 'fallback_cb' => '',
// 'menu_id' => 'main-menu',
// 'depth' => 2,
// 'walker' => new Understrap_WP_Bootstrap_Navwalker(),
// )
// );
wp_nav_menu(
array(
'theme_location' => 'primary',
'container_class' => 'collapse navbar-collapse',
'container_id' => 'navbarNavDropdown',
'menu_class' => 'navbar-nav ms-auto',
'fallback_cb' => '',
'menu_id' => 'main-menu',
'depth' => 2,
'walker' => new Understrap_WP_Bootstrap_Navwalker(),
)
);
?>
</div><!-- .container(-fluid) -->
......
......@@ -6866,10 +6866,13 @@
}
}, false);
$(window).resize(function () {
$('.link-block.image-text .text').css({
height: 'auto'
});
var $sameHeightDivs = $('.link-block.image-text .text');
var maxHeight = 0;
$sameHeightDivs.each(function () {
maxHeight = Math.max(maxHeight, $(this).outerHeight());
maxHeight = Math.max(maxHeight, $(this).outerHeight()) + 10;
});
$sameHeightDivs.css({
height: maxHeight + 'px'
......@@ -6879,7 +6882,7 @@
var $sameHeightDivs = $('.link-block.image-text .text');
var maxHeight = 0;
$sameHeightDivs.each(function () {
maxHeight = Math.max(maxHeight, $(this).outerHeight());
maxHeight = Math.max(maxHeight, $(this).outerHeight()) + 10;
});
$sameHeightDivs.css({
height: maxHeight + 'px'
......
This diff could not be displayed because it is too large.
......@@ -90,5 +90,5 @@
* Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
!function(e,t){e.exports=function(e,t,n,i){const s="toast",o=".bs.toast",r=`mouseover${o}`,a=`mouseout${o}`,l=`focusin${o}`,c=`focusout${o}`,u=`hide${o}`,h=`hidden${o}`,d=`show${o}`,f=`shown${o}`,p="fade",g="hide",m="show",_="showing",b={animation:"boolean",autohide:"boolean",delay:"number"},v={animation:!0,autohide:!0,delay:5e3};class y extends e{constructor(e,t){super(e,t),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return v}static get DefaultType(){return b}static get NAME(){return s}show(){if(t.trigger(this._element,d).defaultPrevented)return;this._clearTimeout(),this._config.animation&&this._element.classList.add(p);const e=()=>{this._element.classList.remove(_),t.trigger(this._element,f),this._maybeScheduleHide()};this._element.classList.remove(g),i.reflow(this._element),this._element.classList.add(m,_),this._queueCallback(e,this._element,this._config.animation)}hide(){if(!this.isShown())return;if(t.trigger(this._element,u).defaultPrevented)return;const e=()=>{this._element.classList.add(g),this._element.classList.remove(_,m),t.trigger(this._element,h)};this._element.classList.add(_),this._queueCallback(e,this._element,this._config.animation)}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(m),super.dispose()}isShown(){return this._element.classList.contains(m)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(e,t){switch(e.type){case"mouseover":case"mouseout":this._hasMouseInteraction=t;break;case"focusin":case"focusout":this._hasKeyboardInteraction=t}if(t)return void this._clearTimeout();const n=e.relatedTarget;this._element===n||this._element.contains(n)||this._maybeScheduleHide()}_setListeners(){t.on(this._element,r,(e=>this._onInteraction(e,!0))),t.on(this._element,a,(e=>this._onInteraction(e,!1))),t.on(this._element,l,(e=>this._onInteraction(e,!0))),t.on(this._element,c,(e=>this._onInteraction(e,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(e){return this.each((function(){const t=y.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===t[e])throw new TypeError(`No method named "${e}"`);t[e](this)}}))}}return n.enableDismissTrigger(y),i.defineJQueryPlugin(y),y}(T(),g(),P(),p())}({get exports(){return on},set exports(e){on=e}});var rn,an,ln,cn=on;rn=navigator.userAgent.toLowerCase().indexOf("webkit")>-1,an=navigator.userAgent.toLowerCase().indexOf("opera")>-1,ln=navigator.userAgent.toLowerCase().indexOf("msie")>-1,(rn||an||ln)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",(function(){var e,t=location.hash.substring(1);/^[A-z0-9_-]+$/.test(t)&&(e=document.getElementById(t))&&(/^(?:a|select|input|button|textarea)$/i.test(e.tagName)||(e.tabIndex=-1),e.focus())}),!1),jQuery(document).ready((function(e){e(".story-body-image").each((function(t){e(this).parents(".wp-block-column").attr("style","background-image:url("+e(this).children("img").attr("src")+");"),e(this).children("img").hide()})),e(".story-body-image-full").each((function(t){e(this).parents(".wp-block-columns").attr("style","background-image:url("+e(this).children("img").attr("src")+");"),e(this).children("img").hide()})),document.addEventListener("wpcf7mailsent",(function(e){"6"==e.detail.contactFormId&&jQuery("#contest_popup").modal("show"),"108"==e.detail.contactFormId&&jQuery("#contact_popup").modal("show")}),!1),e(window).resize((function(){var t=e(".link-block.image-text .text"),n=0;t.each((function(){n=Math.max(n,e(this).outerHeight())})),t.css({height:n+"px"})})),e(document).ready((function(){var t=e(".link-block.image-text .text"),n=0;t.each((function(){n=Math.max(n,e(this).outerHeight())})),t.css({height:n+"px"})}))})),e.Alert=$,e.Button=N,e.Carousel=B,e.Collapse=W,e.Dropdown=Ot,e.Modal=Ht,e.Offcanvas=zt,e.Popover=Zt,e.Scrollspy=tn,e.Tab=sn,e.Toast=cn,e.Tooltip=Gt,Object.defineProperty(e,"__esModule",{value:!0})}));
!function(e,t){e.exports=function(e,t,n,i){const s="toast",o=".bs.toast",r=`mouseover${o}`,a=`mouseout${o}`,l=`focusin${o}`,c=`focusout${o}`,u=`hide${o}`,h=`hidden${o}`,d=`show${o}`,f=`shown${o}`,p="fade",g="hide",m="show",_="showing",b={animation:"boolean",autohide:"boolean",delay:"number"},v={animation:!0,autohide:!0,delay:5e3};class y extends e{constructor(e,t){super(e,t),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return v}static get DefaultType(){return b}static get NAME(){return s}show(){if(t.trigger(this._element,d).defaultPrevented)return;this._clearTimeout(),this._config.animation&&this._element.classList.add(p);const e=()=>{this._element.classList.remove(_),t.trigger(this._element,f),this._maybeScheduleHide()};this._element.classList.remove(g),i.reflow(this._element),this._element.classList.add(m,_),this._queueCallback(e,this._element,this._config.animation)}hide(){if(!this.isShown())return;if(t.trigger(this._element,u).defaultPrevented)return;const e=()=>{this._element.classList.add(g),this._element.classList.remove(_,m),t.trigger(this._element,h)};this._element.classList.add(_),this._queueCallback(e,this._element,this._config.animation)}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(m),super.dispose()}isShown(){return this._element.classList.contains(m)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(e,t){switch(e.type){case"mouseover":case"mouseout":this._hasMouseInteraction=t;break;case"focusin":case"focusout":this._hasKeyboardInteraction=t}if(t)return void this._clearTimeout();const n=e.relatedTarget;this._element===n||this._element.contains(n)||this._maybeScheduleHide()}_setListeners(){t.on(this._element,r,(e=>this._onInteraction(e,!0))),t.on(this._element,a,(e=>this._onInteraction(e,!1))),t.on(this._element,l,(e=>this._onInteraction(e,!0))),t.on(this._element,c,(e=>this._onInteraction(e,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(e){return this.each((function(){const t=y.getOrCreateInstance(this,e);if("string"==typeof e){if(void 0===t[e])throw new TypeError(`No method named "${e}"`);t[e](this)}}))}}return n.enableDismissTrigger(y),i.defineJQueryPlugin(y),y}(T(),g(),P(),p())}({get exports(){return on},set exports(e){on=e}});var rn,an,ln,cn=on;rn=navigator.userAgent.toLowerCase().indexOf("webkit")>-1,an=navigator.userAgent.toLowerCase().indexOf("opera")>-1,ln=navigator.userAgent.toLowerCase().indexOf("msie")>-1,(rn||an||ln)&&document.getElementById&&window.addEventListener&&window.addEventListener("hashchange",(function(){var e,t=location.hash.substring(1);/^[A-z0-9_-]+$/.test(t)&&(e=document.getElementById(t))&&(/^(?:a|select|input|button|textarea)$/i.test(e.tagName)||(e.tabIndex=-1),e.focus())}),!1),jQuery(document).ready((function(e){e(".story-body-image").each((function(t){e(this).parents(".wp-block-column").attr("style","background-image:url("+e(this).children("img").attr("src")+");"),e(this).children("img").hide()})),e(".story-body-image-full").each((function(t){e(this).parents(".wp-block-columns").attr("style","background-image:url("+e(this).children("img").attr("src")+");"),e(this).children("img").hide()})),document.addEventListener("wpcf7mailsent",(function(e){"6"==e.detail.contactFormId&&jQuery("#contest_popup").modal("show"),"108"==e.detail.contactFormId&&jQuery("#contact_popup").modal("show")}),!1),e(window).resize((function(){e(".link-block.image-text .text").css({height:"auto"});var t=e(".link-block.image-text .text"),n=0;t.each((function(){n=Math.max(n,e(this).outerHeight())+10})),t.css({height:n+"px"})})),e(document).ready((function(){var t=e(".link-block.image-text .text"),n=0;t.each((function(){n=Math.max(n,e(this).outerHeight())+10})),t.css({height:n+"px"})}))})),e.Alert=$,e.Button=N,e.Carousel=B,e.Collapse=W,e.Dropdown=Ot,e.Modal=Ht,e.Offcanvas=zt,e.Popover=Zt,e.Scrollspy=tn,e.Tab=sn,e.Toast=cn,e.Tooltip=Gt,Object.defineProperty(e,"__esModule",{value:!0})}));
//# sourceMappingURL=child-theme.min.js.map
\ No newline at end of file
......
This diff could not be displayed because it is too large.
......@@ -25,12 +25,13 @@ jQuery( document ).ready(function($) {
$(window).resize(function(){
$('.link-block.image-text .text').css({ height: 'auto' });
var $sameHeightDivs = $('.link-block.image-text .text');
var maxHeight = 0;
$sameHeightDivs.each(function() {
maxHeight = Math.max(maxHeight, $(this).outerHeight());
maxHeight = Math.max(maxHeight, $(this).outerHeight()) + 10 ;
});
$sameHeightDivs.css({ height: maxHeight + 'px' });
$sameHeightDivs.css({ height: maxHeight + 'px' });
});
......@@ -38,7 +39,7 @@ $(document).ready(function () {
var $sameHeightDivs = $('.link-block.image-text .text');
var maxHeight = 0;
$sameHeightDivs.each(function() {
maxHeight = Math.max(maxHeight, $(this).outerHeight());
maxHeight = Math.max(maxHeight, $(this).outerHeight()) + 10 ;
});
$sameHeightDivs.css({ height: maxHeight + 'px' });
});
......
......@@ -13,6 +13,9 @@ body,html{
width: 100vw;
}
html {
scroll-padding-top: 110px;
}
#full-width-page-wrapper:not(.home-page) {
padding-bottom: 200px;
padding-top: 130px;
......@@ -180,4 +183,24 @@ div#error-404-wrapper {
}
}
.menu-item.menu-item-type-custom.menu-item-object-custom{
a{
background-color: #183668 !important;
text-transform: uppercase;
max-width: unset;
float: right;
border: 0px solid #183668 !important;
color: #fff !important;
transition: ease-out 0.5s;
padding: 10px 20px;
text-decoration: none;
}
a:hover{
background-color: #3EAF49 !important;
color: #fff !important;
transition: ease-out 0.5s;
}
}
\ No newline at end of file
......
......@@ -12,6 +12,9 @@
background-position:center;
transition: 0.5s;
}
.link{
padding-top: 18px;
text-transform: uppercase;
......@@ -32,7 +35,8 @@
}
.link-block.text{
padding:40px 32px 0px 32px;
}
}
}
......@@ -102,3 +106,36 @@
}
}
.link-block{
.text{
position: relative;
p:last-child{
padding-bottom: 40px;
}
a{
background-color: transparent !important;
text-transform: uppercase;
max-width: unset;
float: right;
border: 1px solid #183668 !important;
color: #183668 !important;
transition: ease-out 0.5s;
position: absolute;
bottom: 25px;
left: 45px;
padding: 10px 20px;
text-decoration: none;
}
a:hover{
background-color: transparent !important;
color: #fff !important;
box-shadow: inset 200px 0 0 0 #183668;
transition: ease-out 0.5s;
}
}
}
\ No newline at end of file
......