This commit is contained in:
SBD
2024-01-19 16:48:58 +03:00
parent ad7afe36f1
commit 71d9759dc4
4 changed files with 44 additions and 8 deletions

View File

@@ -904,6 +904,7 @@ body.n_scroll{
padding-bottom: 5px;
text-decoration: none;
display: block;
color: #fff;
}
/* how dev*/
@@ -1383,6 +1384,10 @@ body.n_scroll{
.mobile_additionals_btns .checkbox_container{
display: none;
}
.logo_3d_sec_designer_mobile{
display: none;
}
.mobile_additionals_btns .checkbox_container{
display: none;
}

View File

@@ -131,9 +131,6 @@
.text_header{
padding-right: 40px;
}
.standart_txt{
font-size: 14px;
}
.language_select{
margin-left: 30px;
margin-right: 30px;
@@ -286,10 +283,23 @@
.container_content_functional_features_block_items{
margin-top: -10%;
}
.service_block_container{
width: 44%;
}
}
@media (max-width: 800px) {
.w_one_present.odd .txt_part_w_one_present{
margin-left: unset;
margin-bottom: 20px;
padding-left: unset;
}
.img_container_part_w_one_present{
width: 100%;
}
.txt_part_w_one_present{
width: 100%;
}
.container_content_functional_features_block_items{
flex-wrap: wrap;
}
@@ -341,6 +351,18 @@
flex-wrap: wrap;
justify-content: right;
}
.service_block_container{
width: 100%;
text-align: -webkit-center;
}
.left_part_service{
width: 60px;
}
.service_img{
width: 60px;
height: 60px;
}
.footer_els_container{
width: 100%;
}
@@ -383,6 +405,9 @@
.picture_tag_standart{
display: block;
}
.logo_3d_sec_designer_mobile{
display: block;
}
.plugin_description{
margin-top: 20px;
}
@@ -404,4 +429,10 @@
.description_item_features_container{
width: 100%;
}
}
@media (max-width: 500px) {
.service_block_container{
text-align: -webkit-left;
}
}

View File

@@ -15,7 +15,7 @@
<source srcset="{{ MEDIA_URL }}{{ block.picture }}">
<img class="logo_3d_sec_designer_mobile" src="{{ MEDIA_URL }}{{ block.picture }}">
</picture>
{% endif %}
{% endif %}
{% if block.description %}
<div class="semi_large_semi_light{% if block.but1_title or block.but2_title or block.but1_icon or block.but2_icon %} plugin_description{% endif %}">
{{ block.description|linebreaksbr }}

View File

@@ -4,13 +4,13 @@
<div class="cut-width sections_btns">
<div class="container_content_sections_buttons">
{% for section in sections %}
<a href="{% url 'section_page' section.url %}" class="section_btn {% if section == cur_section or page == section %}open{% else %}close{% endif %} standart_txt pointer" data-url="{{ section.url }}">
<a href="{% url 'section_page' section.url %}" class="section_btn {% if section == cur_section or page == section %}open{% else %}close{% endif %} pointer" data-url="{{ section.url }}">
<div class="txt_section standart_semi_bold_txt">{{ section.name }}</div>
<div class="description_sections_buttons">
{% if section.description %}
<div class="description_txt standart_txt">{{ section.description }}</div>
<div class="description_txt ">{{ section.description }}</div>
{% endif %}
<div class="standart_txt line_go_to_sections"><span class="orange">{% translate "перейти в раздел" %}</span> <img class="img_go_to_section" src="{% static "/images/arrow_right_for_sections.svg" %}"></div>
<div class=" line_go_to_sections"><span class="orange">{% translate "перейти в раздел" %}</span> <img class="img_go_to_section" src="{% static "/images/arrow_right_for_sections.svg" %}"></div>
</div>
</a>
{% endfor %}