This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
background: linear-gradient(184deg, #ef093e, #060506); | |
background-size: 400% 400%; | |
-webkit-animation: AnimationName 11s ease infinite; | |
-moz-animation: AnimationName 11s ease infinite; | |
-o-animation: AnimationName 11s ease infinite; | |
animation: AnimationName 11s ease infinite; | |
@-webkit-keyframes AnimationName { | |
0%{background-position:34% 0%} | |
50%{background-position:67% 100%} | |
100%{background-position:34% 0%} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Switch Divi Logo on Mobile Devices */ | |
@media only screen and (max-width: 981px) { | |
#logo { | |
content: url(“http://mydomainname.com/wp-content/.../MyMobileLogo.png”); | |
max-height: 160px; | |
height: auto; /* default value - the browser calculates the height */ | |
} | |
} | |
/* Restrict the width of the logo if necessary */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* For when the mouse moves on to the image */ | |
.brands img:hover { | |
-webkit-transform: scale(.65) translateY(-4px); | |
-ms-transform: scale(.65) translateY(-4px); | |
transition: all .4s ease-in-out; | |
transform: scale(1.2) translateY(-4px); | |
} | |
/* For when the mouse moves off the image */ | |
.brands img { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var hash = window.location.hash.substr(1); | |
if (hash == '%%ELEMENT_ID%%') { | |
setTimeout(function(){ | |
jQuery([document.documentElement, document.body]).animate({ | |
scrollTop: jQuery('#' + '%%ELEMENT_ID%%').offset().top - 100 | |
}, 1000); | |
jQuery('#' + '%%ELEMENT_ID%%').trigger('click'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root { | |
--columns-gap: 1rem; | |
} | |
@media (min-width:782px) { | |
.wp-block-column:not(:first-child) { | |
margin-left: var(--columns-gap); | |
} | |
} | |
@media (min-width:600px) and (max-width:781px) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery('.oxy-off-canvas .menu-item a[href*=\\#]').on('click', function (event) { | |
if(this.pathname === window.location.pathname){ | |
jQuery('body').removeClass('off-canvas-toggled'); | |
jQuery('.oxy-off-canvas').removeClass('oxy-off-canvas-toggled'); | |
jQuery(jQuery('.offcanvas-inner').data('trigger-selector')).find('.hamburger').removeClass('is-active'); | |
} | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function($) { | |
if(window.angular) return; | |
$('.oxy-tabs').on('click', function() { | |
let tabContent = '#' + $(this).attr('data-oxy-tabs-contents-wrapper'); | |
let carousels = $(tabContent).find('.oxy-carousel-builder'); | |
carousels.each(function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.oxy-burger-trigger .hamburger--slider.is-active .hamburger-inner { | |
transform: none; | |
} | |
.oxy-burger-trigger .hamburger--slider.is-active .hamburger-inner::before { | |
transform: none; | |
opacity: 1; | |
} | |
.oxy-burger-trigger .hamburger--slider.is-active .hamburger-inner::after { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Styles the Radio field as clickable image for Fluent Forms | |
* | |
* Use: Paste into Custom CSS Section of your Form | |
* Add class "fancy-input" to container of all inputs that need the fancy styling | |
* | |
* Forked version of Sebastian Berger from inital post Fluent Forms FB Group - https://bit.ly/37BBpet | |
* FB Post - https://bit.ly/2ZEn2BG | |
* | |
* Full Links at bottom |
OlderNewer