Files
Aerbim/templates/blocks/block_elements/be_button.html
2023-12-08 16:45:50 +03:00

23 lines
748 B
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;
}
.{{ widget.name_w }}_{{ widget.id }}_widget_btn_a:hover {
background: {{ widget.but_color }};
color: #ffffff;
transition: 200ms;
}
</style>
<a class="{{ widget.name_w }}_{{ widget.id }}_widget_btn_a_" href="{{ widget.url }}">
{{ widget.but_title }}
</a>
{% endif %}