templates/galerie/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}SVS - GALERIE{% endblock %}
  3. {% block body %}
  4. <style>
  5.     header {
  6.         box-shadow:0 0 3px 0 rgba(0,0,0,0.22)!important;
  7.     }
  8.     .divgalerie {
  9.         padding:7%;
  10.         padding-top:calc(7% + 35px)!important;
  11.         background-image:linear-gradient(to left, rgba(255, 255, 255, 0), rgb(250 246 239) 52%),
  12.         url('');
  13.         position:relative;
  14.     }
  15.     .technolo {
  16.         position: absolute;
  17.         top: 0;
  18.         left: 0;
  19.         width: 100%;
  20.         height: -webkit-fill-available;
  21.         background-attachment: fixed;
  22.         background-image: linear-gradient(180deg, #faf6ef 36%, #2d427580 60%, #ffffff 40%)!important;
  23.         clip-path: ellipse(87% 21.75% at 50% -0.2%);
  24.     }
  25.     .share {
  26.         opacity:1!important;
  27.     }
  28. </style>
  29. <div class="divgalerie">
  30.     <div class="technolo"></div>
  31.     <div class="svsTitle">
  32.         <div class="groupe_svsTitle">
  33.             <h3 class="typed-home-about typed_gallery"></h3>
  34.         </div>
  35.     </div>
  36.     {% include "AppTemplates/valide/galerieContent/index.html.twig" %}
  37. </div>
  38. {% endblock %}