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 src="www.placeholder.ee" type="text/javascript"></script> | |
| <br><br> | |
| <script> | |
| jQuery(document).ready(function(){ | |
| jQuery( ".content-inner" ).on( "click", "a", function() { | |
| jQuery(".BambooHR-ATS-Jobs-Item > a").attr("target", "_blank"); | |
| }); |
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
| .related-container { | |
| display: flex; | |
| flex-wrap: wrap; | |
| justify-content: space-between; | |
| .related { | |
| flex-grow: 1; | |
| max-width: 48%; | |
| flex-basis: 48%; /* For IE */ | |
| &:nth-child(odd):last-child { | |
| max-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
| function frontBoxesMed(){ | |
| $('.eda_layout:not(.sidebar_layout) .eda_row_type-2mediumleft, .eda_layout:not(.sidebar_layout) .eda_row_type-2mediumright').each(function(){ | |
| var element = $(this); | |
| element.imagesLoaded( function() { | |
| // images have loaded | |
| element.find('.eda_module').removeAttr('data-height').css('height', ''); | |
| var maxH = 0; | |
| element.find('.eda_module').each(function(){ | |
| var elem = $(this), | |
| elemH; |
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
| top: 50%; left: 50%; | |
| -webkit-transform: translate(-50%,-50%); | |
| -ms-transform: translate(-50%,-50%); | |
| transform: translate(-50%,-50%); |
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 reserveHeaderSpace() { | |
| if (!$('body').hasClass('not-top')) { | |
| var headerHeight = $('header.header').outerHeight(); | |
| $('.content-wrap').css('padding-top', headerHeight); | |
| } else { | |
| $('.content-wrap').css('padding-top', ''); | |
| } | |
| } | |
| reserveHeaderSpace(); | |
| $(window).on('load resize',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
| &:after { | |
| content: ''; | |
| display: inline-block; | |
| margin-left: 7px; | |
| height: 0; | |
| border-style: solid; | |
| border-width: 5px 0 5px 5px; | |
| border-color: transparent transparent transparent $pink; | |
| } |
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
| display: inline-block; | |
| overflow: hidden; | |
| text-indent: -9999px; |
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
| ul { | |
| >li { | |
| position: relative; | |
| &::before { | |
| display: inline-block; | |
| content: ''; | |
| height: 6px; | |
| width: 6px; | |
| background-color: $brand-primary; | |
| position: absolute; |
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
| $('.subitems-depth-1 .current-menu-item').parents('.menu-item-depth-0').addClass('current-menu-item'); |