This commit is contained in:
SBD
2023-12-07 19:23:55 +03:00
parent 7e07b5c0c5
commit 205876a9e5
3 changed files with 18 additions and 10 deletions

View File

@@ -553,9 +553,8 @@ body.n_scroll{
}
.plugin_txt{
margin-top: 8px;
margin-bottom: 35px;
width: 60%;
width: 100%;
}
.plugin_description{
@@ -637,7 +636,7 @@ body.n_scroll{
.logo_3d_sec_designer{
width: 300px;
height: 100%;
position: absolute;
bottom: 0;
}

View File

@@ -1,15 +1,14 @@
{% load static %}
<div class="cut-width">
<div class="plugin_container">
{% if block.pre_title %}
<div class="semi_large_light">{{ block.pre_title }}</div>
{% endif %}
{% if block.name %}
<div class="large_txt plugin_txt">{{ block.name }}</div>
{% endif %}
<div class="plugin_container_content">
<div class="left_part_plugin_container">
{% if block.pre_title %}
<div class="semi_large_light">{{ block.pre_title }}</div>
{% endif %}
{% if block.name %}
<div class="large_txt plugin_txt">{{ block.name }}</div>
{% endif %}
{% if block.description %}
<div class="semi_large_semi_light plugin_description">
{{ block.description|linebreaksbr }}

View File

@@ -0,0 +1,10 @@
{% load static %}
<div class="container_block_presentation_aerBim">
<div class="cut-width">
<div class="container_content_presentation_aerBim">
{% for section in sections %}
{% include "widgets/w_one_present_aerBim.html" %}
{% endfor %}
</div>
</div>
</div>