This commit is contained in:
Meylis Gazakow 2022-06-02 13:50:12 +03:00
parent ebc91ed2a8
commit beb75c8dea
4 changed files with 21 additions and 3 deletions

View File

@ -106,7 +106,7 @@
}
}
@mixin xlg-xxlg {
@mixin xlg-xxxlg {
@media (max-width: 1400px) {
@content;
}

View File

@ -1,5 +1,5 @@
// 1400 ========================
@include xlg-xxlg {
@include xlg-xxxlg {
// About ================
.about {

View File

@ -2603,7 +2603,7 @@ svg.active .svg-elem-21 {
padding: 0 60px 0 0 !important;
}
}
@media (max-width: 1400px) {
@media (max-width: 1200px) {
.hero_item-title {
font-size: 30px;
}

View File

@ -701,7 +701,25 @@
});
var play_video = document.querySelector(".video_play");
var close_video = document.querySelector(".modal_close");
var modal_video = document.querySelector(".modal_video video");
if (close_video != undefined) {
close_video.addEventListener('click', function () {
modal_video.pause();
});
}
if (play_video != undefined) {
play_video.addEventListener('click', function () {
modal_video.play();
});
}
</script>
</body>
</html>