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
html::-webkit-scrollbar-track { | |
background: linear-gradient(90deg,#434343,#434343 1px,#111 0,#111); | |
} | |
html::-webkit-scrollbar-thumb { | |
background: #434343; | |
border-radius: 16px; | |
box-shadow: inset 2px 2px 2px hsl(0deg 0% 100% / 25%), inset -2px -2px 2px rgb(0 0 0 / 25%); | |
} | |
html::-webkit-scrollbar { | |
width: 16px; |
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
::-webkit-scrollbar-corner { | |
background: rgba(0, 0, 0, 0.5); | |
} | |
* { | |
scrollbar-width: thin; | |
scrollbar-color: #c5c5c5; | |
} | |
/* Works on Chrome, Edge, and Safari */ | |
*::-webkit-scrollbar { | |
width: 12px; |
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
<!-- This will scrolling desktop and mobile both --> | |
<script> | |
$(function(){ | |
$("#filter").focus(function() { | |
$('html,body').animate({ | |
scrollTop: $(".advisor_single_input").offset().top - 0},'slow'); | |
}); | |
$("#filter").focusout(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
<script> | |
$(document).ready(function() { | |
$("#email_submit").on("click", function() { | |
$(".multistep_form").addClass("loading"); | |
setTimeout(function() { | |
$(".multistep_form").removeClass("loading"); | |
}, 5000); | |
}); | |
}); | |
</script> |
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
<button id="dsk_humberger" class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown" aria-expanded="false" aria-label="Open the menu"> | |
<img src="<?php echo get_template_directory_uri()?>/assets/images/humberger-open.svg" alt="open menu icon" class="open_menu"> | |
<img src="<?php echo get_template_directory_uri()?>/assets/images/humberger-close.svg" alt="close menu icon" class="close_menu"> | |
</button> |
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
<div align="center" class="embed-responsive embed-responsive-16by9"> | |
<button class="playbutton" id="video_play"><img id="playpasue" src="custom/images/pause.png"></button> | |
<video id="herovideo" class="embed-responsive-item" width="560" height="315" autoplay loop muted> | |
<source src="custom/videos/Hero-Video-v8.mp4" type="video/mp4" /> | |
<source src="custom/videos/Hero-Video-v8.mp4" type="video/mov" /> | |
<source src="custom/videos/Hero-Video-v8.mp4" type="video/ogg" /> Your browser does not support the video tag. | |
</video> | |
</div> |
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
<div> | |
Use the <em>TAB</em> key to move focus around.<br> | |
<span class="bad-focus">Mouse Focus</span> | |
<span class="good-focus">Tab Focus</span> | |
</div> | |
<button>Button A</button> | |
<button>Button B</button> | |
<input type="text" value="Input A"> |
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
<div class="img-bank"> | |
<img style="display:none" src="assets/img/fc-desktop-hero1.jpg" /> | |
<img style="display:none" src="assets/img/fc-desktop-hero2.jpg" /> | |
<img style="display:none" src="assets/img/fc-desktop-hero3.jpg" /> | |
<img style="display:none" src="assets/img/fc-desktop-hero4.jpg" /> | |
<img style="display:none" src="assets/img/fc-desktop-hero5.jpg" /> | |
<img style="display:none" src="assets/img/fc-desktop-hero6.jpg" /> | |
<img style="display:none" src="assets/img/fc-desktop-hero7.jpg" /> | |
<img style="display:none" src="assets/img/fc-desktop-hero8.jpg" /> | |
<img style="display:none" src="assets/img/fc-desktop-hero9.jpg" /> |
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
/*Comment below line from jquery.sticky.js file */ | |
/*s.stickyWrapper.css('height',s.stickyElement.outerHeight());*/ |
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
<div id="another_medication" class="another_field"> | |
</div> | |
<button id="add_another_btn" type="button" class="add_another"><img src="custom/images/plus-icon-green.png" alt="Add"></button> | |
<script type="text/javascript"> | |
$(document).ready(function(){ | |
var maxField = 6; //Input fields increment limitation | |
var addButton = $('#add_another_btn'); //Add button selector |