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
| setTimeout(() => { | |
| document | |
| .querySelectorAll( | |
| 'button.pv-skill-entity__featured-endorse-button-shared.artdeco-button' | |
| ) | |
| .forEach((button) => { | |
| if (button.innerHTML.includes('plus-icon')) button.click(); | |
| }); | |
| }, 2000); |
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 page = $("html, body"); | |
| $('a[href*="#"]').click(function(e) { | |
| page.on("scroll mousedown wheel DOMMouseScroll mousewheel keyup touchmove", function(){ | |
| page.stop(); | |
| }); | |
| page.animate({ scrollTop: $(this).position().top }, 'slow', function(){ | |
| page.off("scroll mousedown wheel DOMMouseScroll mousewheel keyup touchmove"); |
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
| function parallax() { | |
| var scrolledY = $(window).scrollTop(); | |
| $(".container").css("background-position", "center -" + ((scrolledY * 0.2)) + "px"); | |
| } | |
| parallax(); | |
| $(window).scroll(function () { | |
| parallax(); | |
| }); |
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
| @-moz-document url-prefix() { | |
| width: 100%; | |
| } |
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
| if (navigator.userAgent.match(/Trident\//) || navigator.userAgent.match(/Edge\//)) { | |
| document.body.addEventListener("mousewheel", function(evt) { | |
| evt.preventDefault(); | |
| var wd = evt.wheelDelta; | |
| var csp = window.pageYOffset; | |
| window.scrollTo(0, csp - wd); | |
| }); | |
| } |
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
| .small_box.meeting_box { | |
| .box_header { | |
| padding: 0; | |
| border-bottom: none; | |
| margin: 0; | |
| } | |
| .box_title { | |
| display: block; | |
| font-size: @mobile-header-font-size !important; | |
| font-weight: @mobile-header-font-weight !important; |
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
| $(".breadcrumb").html($(".breadcrumb").html().replace("»", ">")); |
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
| $('.search-trigger').click(function () { | |
| $(this).toggleClass('active'); | |
| $("#searchbox").toggle(); | |
| $("#searchbox input").focus(); | |
| }); | |
| if (window.matchMedia("(min-width: 48em)").matches) { | |
| var exclude_div = $("#searchbox, #searchbox *"); | |
| $(document).click(function (e) { | |
| if (!(exclude_div.is(e.target)) && !($(e.target).hasClass('search-trigger'))) { |
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
| @if (!string.IsNullOrWhiteSpace(title)) { | |
| <div class="slide_content"> | |
| <div class="container"> | |
| <h2 class="slide_title">@title</h2> | |
| @if (!string.IsNullOrWhiteSpace(desc)) { | |
| <p class="slide_description"> | |
| @desc | |
| @if (href != "javascript:void(0);") { | |
| <a href="@href" class="slide_link">Learn More</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
| Redirect gone /path/path/folder/ | |
| ErrorDocument 410 default |
NewerOlder