HubSpot HUBL
CSS

HubL Assets

Module theme fields (opens in a new tab) Module files (opens in a new tab) Scoped (opens in a new tab)

{% require_css %}
<style>
  {% scope_css %}
    img {
    border-width:{{ module.border_width }}px;
    border-color:rgba({{ module.border_color.color|convert_rgb}},{{ module.border_color.opacity/100 }});
    border-style: solid;
    }
  {% end_scope_css %} 
</style>
{% end_require_css %}
 
 {% if module.style.block_gradient %}
                background: {{ module.style.block_gradient.css }};
  {% endif %}
  {{ module.style.block_background_image.css }}
  {{ module.style.spacing.css }}
  {{ module.style.border.css }}
  {% if module.style.block_alignment.horizontal_align == "CENTER" %}
      text-align: center;
  {% endif %}
 
  {% if module.style.block_alignment.vertical_align == "MIDDLE" %}
      justify-content: center;
  {% endif %}
 
 
  {% if module.style.block_alignment.horizontal_align == "RIGHT" %}
      .module-boxes .section-title {
          text-align: right;
      }
  {% endif %}