Merge remote-tracking branch 'origin/main'
This commit is contained in:
@@ -29,12 +29,12 @@ body.n_scroll{
|
||||
}
|
||||
|
||||
.header{
|
||||
height: 60px;
|
||||
height: 50px;
|
||||
width: 100%;
|
||||
background: #FFFFFF;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
padding: 5px 0 5px 0;
|
||||
padding: 10.5px 0 10.5px 0;
|
||||
z-index: 101;
|
||||
}
|
||||
|
||||
@@ -68,7 +68,7 @@ body.n_scroll{
|
||||
}
|
||||
|
||||
.logo_header{
|
||||
height: 60px;
|
||||
height: 49px;
|
||||
}
|
||||
|
||||
.right_part_header {
|
||||
@@ -78,7 +78,7 @@ body.n_scroll{
|
||||
display: flex;
|
||||
justify-content: right;
|
||||
align-items: center;
|
||||
height: 60px;
|
||||
height: 49px;
|
||||
}
|
||||
|
||||
.right_part_header_mobile{
|
||||
@@ -261,7 +261,7 @@ body.n_scroll{
|
||||
text-align: -moz-center;
|
||||
position: absolute;
|
||||
padding: 10px 0;
|
||||
top: 24px;
|
||||
top: 34px;
|
||||
}
|
||||
|
||||
.content_select_language > div{
|
||||
@@ -1131,7 +1131,7 @@ body.n_scroll{
|
||||
/* slider block */
|
||||
|
||||
.container_sliders{
|
||||
height: calc(100vh - 115px);
|
||||
height: calc(100vh - 125px);
|
||||
margin-top: 60px;
|
||||
}
|
||||
|
||||
@@ -1160,13 +1160,32 @@ body.n_scroll{
|
||||
|
||||
.slider_block_text_container{
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.cut_width_slider{
|
||||
height: 100%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.bottom_part_container_slide{
|
||||
position: absolute;
|
||||
bottom: 80px;
|
||||
}
|
||||
.top_part_container_slide{
|
||||
position: absolute;
|
||||
top: 190px;
|
||||
right: 0;
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
.functions_btns_slider{
|
||||
display: block;
|
||||
position: absolute;
|
||||
bottom: 25px;
|
||||
position: relative;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
color: #ffffff;
|
||||
}
|
||||
@@ -1180,11 +1199,7 @@ body.n_scroll{
|
||||
|
||||
.slider_block_text{
|
||||
display: block;
|
||||
position: absolute;
|
||||
bottom: 80px;
|
||||
right: 0;
|
||||
color: #ffffff;
|
||||
width: 40%;
|
||||
}
|
||||
|
||||
.title_slide{
|
||||
|
||||
@@ -74,7 +74,9 @@ function renderContent (el=null) {
|
||||
replace_select_language()
|
||||
},
|
||||
error: function (data){
|
||||
alert(data.errors)
|
||||
if (data.status !== 0){
|
||||
alert(data.errors)
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
@@ -235,7 +237,7 @@ function autoPlaySlider () {
|
||||
}
|
||||
}
|
||||
}
|
||||
},2000)
|
||||
},5000)
|
||||
} else {
|
||||
// autoPlaySlider()
|
||||
}
|
||||
|
||||
@@ -14,16 +14,16 @@
|
||||
<div class="splitter_text_header"></div>
|
||||
<div class="language_select close">
|
||||
<div class="first_line_language_select pointer" onclick="open_select_language()">
|
||||
<div class="name_language standart_txt">RU</div>
|
||||
<div class="name_language standart_txt">ru</div>
|
||||
<div class="arrow_language_select">
|
||||
<img class="img_arrow_language_select" src="{% static "images/language_icon.svg" %}">
|
||||
</div>
|
||||
<div class="clear_both"></div>
|
||||
</div>
|
||||
<div class="content_select_language">
|
||||
<div class="standart_txt pointer" onclick="select_language(this)">RU</div>
|
||||
<div class="standart_txt pointer" onclick="select_language(this)">ru</div>
|
||||
<div class="splinner_select_language"></div>
|
||||
<div class="standart_txt pointer" onclick="select_language(this)">EN</div>
|
||||
<div class="standart_txt pointer" onclick="select_language(this)">en</div>
|
||||
</div>
|
||||
</div>
|
||||
{# <a class="standart_txt text_header last_right orange pointer">Личный кабинет</a>#}
|
||||
|
||||
@@ -9,26 +9,32 @@
|
||||
{% endif %}
|
||||
</div>
|
||||
{% if slide.name or slide.description %}
|
||||
<div class="cut-width slider_block_text_container">
|
||||
<div class="functions_btns_slider" data-index-slide="{{ forloop.counter }}" data-lenght-slides="{{ page.get_slides|length }}">
|
||||
<img onclick="change_slide('{{ forloop.counter }}','back','{{ page.get_slides|length }}')" src="{% static "images/arrow_white_left.svg" %}">
|
||||
<span class="iterator_slide">
|
||||
{{ forloop.counter }} / {{ page.get_slides|length }}
|
||||
</span>
|
||||
<img onclick="change_slide('{{ forloop.counter }}','next','{{ page.get_slides|length }}')" src="{% static "images/arrow_white_right.svg" %}">
|
||||
</div>
|
||||
<div class="slider_block_text">
|
||||
{% if slide.name %}
|
||||
<div class="title_slide">{{ slide.name }}</div>
|
||||
{% endif %}
|
||||
{% if slide.description %}
|
||||
<div class="description_slide">{{ slide.description|linebreaksbr }}</div>
|
||||
{% endif %}
|
||||
{% if slide.but_title %}
|
||||
{% with widget=slide name_w='slide' %}
|
||||
{% include 'blocks/block_elements/be_button.html' %}
|
||||
{% endwith %}
|
||||
{% endif %}
|
||||
<div class="slider_block_text_container">
|
||||
<div class="cut-width cut_width_slider">
|
||||
<div class="bottom_part_container_slide">
|
||||
<div class="functions_btns_slider" data-index-slide="{{ forloop.counter }}" data-lenght-slides="{{ page.get_slides|length }}">
|
||||
<img onclick="change_slide('{{ forloop.counter }}','back','{{ page.get_slides|length }}')" src="{% static "images/arrow_white_left.svg" %}">
|
||||
<span class="iterator_slide">
|
||||
{{ forloop.counter }} / {{ page.get_slides|length }}
|
||||
</span>
|
||||
<img onclick="change_slide('{{ forloop.counter }}','next','{{ page.get_slides|length }}')" src="{% static "images/arrow_white_right.svg" %}">
|
||||
</div>
|
||||
</div>
|
||||
<div class="top_part_container_slide">
|
||||
<div class="slider_block_text">
|
||||
{% if slide.name %}
|
||||
<div class="title_slide">{{ slide.name }}</div>
|
||||
{% endif %}
|
||||
{% if slide.description %}
|
||||
<div class="description_slide">{{ slide.description|linebreaksbr }}</div>
|
||||
{% endif %}
|
||||
{% if slide.but_title %}
|
||||
{% with widget=slide name_w='slide' %}
|
||||
{% include 'blocks/block_elements/be_button.html' %}
|
||||
{% endwith %}
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user