This commit is contained in:
SBD
2024-01-19 14:59:15 +03:00
parent 7caf147533
commit 617683ba92
5 changed files with 96 additions and 19 deletions

View File

@@ -921,7 +921,7 @@ body.n_scroll{
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: left;
justify-content: center;
}
.how_dev_widget{
@@ -1380,6 +1380,15 @@ body.n_scroll{
text-align: left;
width: 100%;
}
.mobile_additionals_btns .checkbox_container{
display: none;
}
.mobile_additionals_btns .checkbox_container{
display: none;
}
.mobile_additionals_btns .button_form_feedback{
display: none;
}
.cards_contacts_container {
padding: 80px 70px;

View File

@@ -7,6 +7,13 @@
}
@media (max-width: 1024px) {
.name_language {
color: #FFFFFF;
}
.img_arrow_language_select{
filter: brightness(0) saturate(100%) invert(100%) sepia(12%) saturate(0%) hue-rotate(69deg) brightness(103%) contrast(102%);
}
.line_go_to_sections{
width: 100%;
color: #000000;
@@ -43,6 +50,15 @@
top: 50px;
z-index: 100;
}
.container_sections_buttons.main{
display: block;
}
.container_sections_buttons.not_main{
display: none;
}
.container_sliders{
display: none;
}
.txt_section {
color: #000000;
}
@@ -251,6 +267,7 @@
font-size: 16px;
text-align: right;
padding-bottom: 15px;
text-decoration: none;
}
}
@@ -272,22 +289,48 @@
}
@media (max-width: 800px) {
.container_sections_buttons.main{
display: block;
}
.container_sections_buttons.not_main{
display: none;
}
.container_sliders{
display: none;
}
.container_content_functional_features_block_items{
flex-wrap: wrap;
}
.container_content_features_block_item{
width: 45%;
}
.desctop_additionals_btns .checkbox_container{
display: none;
}
.desctop_additionals_btns .checkbox_container{
display: none;
}
.desctop_additionals_btns .button_form_feedback{
display: none;
}
.mobile_additionals_btns .checkbox_container{
display: block;
position: unset;
}
.mobile_additionals_btns .checkbox_container{
display: block;
}
.mobile_additionals_btns .button_form_feedback{
display: block;
position: unset;
}
.mobile_additionals_btns{
margin-top: 30px;
}
.form_feedback_content{
width: 100%;
}
.description_form_feedback{
width: 100%;
}
.container_content_form_feedback{
flex-direction: column;
}
.description_form_feedback_txt{
margin-bottom: 30px;
}
}
@media (max-width: 700px) {
@@ -310,6 +353,12 @@
}
@media (max-width: 670px) {
.how_dev_widget_description{
height: unset;
}
}
@media (max-width: 600px) {
.first_line_block_functional_features{
flex-direction: column-reverse;

View File

@@ -2,6 +2,7 @@ $(document).ready(function (){
if (document.querySelector(".header").dataset['page'] === 'True' && getInfoAboutUser()[0] !== 'mobile' && getInfoAboutUser()[0] !== 'laptop'){
resetSlider()
renderContent()
resize_iframe()
} else {
let el = document.querySelector(".container_sections_buttons")
if (el){
@@ -9,11 +10,21 @@ $(document).ready(function (){
replace_select_language()
resetSlider()
autoPlaySlider()
resize_iframe()
}
}
})
autoplayInterval = null
function resize_iframe () {
$("iframe").each(function() {
let old_width = $(this).width()
$(this).width('100%');
var new_width = $(this).width ();
let height = $(this).height()
$(this).css("height", height/(old_width/new_width) + "px");
});
}
function getInfoAboutUser (){
let user_type = ''