This file contains 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
.partners-slider-wrap | |
.slider-arrow.slider-arrow--left | |
img(src="assets/i/svg/left-arrow.svg") | |
.slider-arrow.slider-arrow--right | |
img(src="assets/i/svg/right-arrow.svg") | |
let partnersSlider = function () { | |
$('#js-partners-slider').slick({ | |
dots: true, | |
arrows: false, |
This file contains 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
.nav-links { | |
margin-left: 30px; | |
} | |
.nav-links .page-numbers { | |
display: inline-flex; | |
justify-content: center; | |
align-items: center; | |
width: 20px; | |
height: 20px; | |
text-decoration: none; |
This file contains 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="wpglobus-lang"> | |
<div class="list"> | |
<a href="http://prodinfo.myihor.ru/" class="wpglobus-selector-link wpglobus-current-language"> | |
<img src="http://prodinfo.myihor.ru/wp-content/plugins/wpglobus/flags/ro.png" alt=""> | |
<span class="name">Română</span> | |
<span class="code">RO</span> | |
</a> | |
<a href="http://prodinfo.myihor.ru/ru/" | |
class="wpglobus-selector-link "> | |
<img |
This file contains 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="sandwitch"> | |
<div class="sandwitch__line sandwitch__line--top"></div> | |
<div class="sandwitch__line sandwitch__line--middle"></div> | |
<div class="sandwitch__line sandwitch__line--bottom"></div> | |
</div> | |
.sandwitch | |
.sandwitch__line.sandwitch__line--top | |
.sandwitch__line.sandwitch__line--middle | |
.sandwitch__line.sandwitch__line--bottom |
This file contains 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
let removeWelcome = function(){ | |
$('.single-menu').contents().filter(function(){ | |
return (this.nodeType == 3); | |
}).remove(); | |
}; | |
removeWelcome(); |
This file contains 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
.footer-form textarea::-webkit-input-placeholder { color: white } | |
.footer-form textarea:-ms-input-placeholder { color: white } | |
.footer-form textarea::-ms-input-placeholder { color: white } | |
.footer-form textarea::placeholder { color: white } |
This file contains 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
let testimonialEgualHeight = function () { | |
let itemHeight = 0; | |
$('#ts-testimonial-static .testimonial-item-single').each(function () { | |
if ($(this).height() > itemHeight) { | |
itemHeight = $(this).height(); | |
} | |
}); | |
$('#ts-testimonial-static .testimonial-item-single').each(function () { |
OlderNewer