Files
Aerbim/templates/blocks/block_elements/be_button.html
2023-12-08 18:38:59 +03:00

30 lines
1.0 KiB
HTML

{% if widget.but_title %}
<style>
.{{ widget.name_w }}_{{ widget.id }}_widget_btn_a{
border: {{ widget.but_color }} solid 2px;
color: {{ widget.but_color }};
width: 80%;
text-decoration: none;
display: block;
padding: 5px 0;
border-radius: 5px;
transition: 200ms;
margin-top: 8px;
text-align: center;
}
.{{ widget.name_w }}_{{ widget.id }}_widget_btn_a:hover {
background: {{ widget.but_color }};
color: #ffffff;
transition: 200ms;
}
.{{ widget.name_w }}_{{ widget.id }}_align_btn{
text-align: {% if not name_w == 'slide' %}-webkit-center{% else %}unset{% endif %};
width: 100%;
}
</style>
<div class="{{ widget.name_w }}_{{ widget.id }}_align_btn">
<a class="{{ widget.name_w }}_{{ widget.id }}_widget_btn_a" href="{{ widget.url }}">
{{ widget.but_title }}
</a>
</div>
{% endif %}