templates/banner.html.twig line 1

Open in your IDE?
  1. {% if banner is defined and banner %}
  2.     {% set bg_color = (banner_color is defined and banner_color) ? banner_color : 'rgba(255, 193, 7, 0.6)' %}
  3.     <div id="floating-banner" style="
  4.         position: fixed;
  5.         top: 10px;
  6.         left: 50%;
  7.         transform: translateX(-50%);
  8.         max-width: 90%;
  9.         background: {{ bg_color }};
  10.         color: #212529;
  11.         padding: 1rem 2rem;
  12.         border-radius: 8px;
  13.         font-size: 2rem;
  14.         font-weight: 900;
  15.         z-index: 9999;
  16.         box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  17.         pointer-events: none;
  18.         text-align: center;
  19.     ">
  20.         {{ banner }}
  21.     </div>
  22. {% endif %}