templates/Accueil/headerParents.html.twig line 1

Open in your IDE?
  1. {#
  2. /*
  3.  * Autheur:Chkioua Maha
  4.  * Email:chkiouamaha@gmail.com
  5.  * Date de création :13/12/2019
  6.  * Date de modification: 
  7.  * Description:Header Layout accueil
  8.  *
  9. */#}
  10. {% block stylesheets %}
  11.  
  12. <style>
  13.     .iconButton {
  14.         font-size: 1.7rem;
  15.         margin-right: 5px;
  16.     }
  17.     .w3-button {
  18.     border: none;
  19.     display: inline-block;
  20.     vertical-align: middle;
  21.     overflow: hidden;
  22.     text-decoration: none;
  23.     color: inherit;
  24.     background-color: inherit;
  25.     text-align: center;
  26.     cursor: pointer;
  27.     white-space: nowrap;
  28.     line-height: 1.5;
  29.     padding-top: 6px;
  30.     font-size: 13px;
  31.     font-family: 'Montserrat-Regular';
  32. }
  33.     .DivHeader {
  34.         background-color: #41A2AA;
  35.         text-align: left;
  36.         color: white;
  37.         height: 56px;
  38.         padding-left: 5.8%;
  39.         padding-top: 4px;
  40.     }
  41.     .logohead {
  42.         width: 60px;
  43.         height: 46px;
  44.         position: relative;
  45.         top: -6.5px;
  46.         left: 1px;
  47.         cursor: pointer;
  48.     }
  49.     .titleHead {
  50.         font-family: Montserrat-Regular;
  51.         font-size: 30px;
  52.         text-transform: uppercase;
  53.         padding-top: 7px;
  54.         margin-left: 2px;
  55.         cursor: pointer;
  56.         color:white;
  57.     }
  58.     .utlisateur {
  59.         text-align: center;
  60.         padding-top: 19px;
  61.     }
  62. </style>
  63. {% endblock %}
  64. <!-- header-start -->
  65. <header>
  66.     <div class="row no-margin DivHeader">
  67.         
  68.         <div class="col-md-9 titleAdmin">
  69.           
  70.             <h1 class="titleHead">
  71.                 <img src="{{'/images/Logo5Sur5.svg'}}" class="logohead"'/>Espace Parent(s) 
  72.             </h1>
  73.         </div>
  74.         <div class=" col-md-3 row" style="margin-top:0px">
  75.             <a class="w3-button"  style="color: #ffff;margin-right:14%" class="" href="{{path('ServiceClient')}}" target="_blank" >  <i class="bi bi-headset iconButton" aria-hidden="true"></i>Besoin d'aide</a>
  76.             <a class="w3-button"  style="color: #ffff" href="{{path('sur5')}}" target="_blank">  <i class="bi bi-question-lg iconButton" aria-hidden="true"></i>5sur5sejour</a>
  77.            
  78.         </div>
  79.       
  80.     </div>
  81. </header>
  82. <!-- header-end -->