templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>{% block title %}Welcome!{% endblock %}</title>
  6.         {% block stylesheets %}{{ encore_entry_link_tags('app') }}{% endblock %}
  7.         <link rel="icon" type="image/x-icon" href="./icone.ico">
  8.         <style>
  9.             /* Assurez-vous que les styles de DataTables ne sont pas affectés par le fond */
  10.             .dt-button{
  11.                 background-color: #007bff !important; /* Couleur de fond des boutons */
  12.                 color: #ffffff !important; /* Couleur du texte des boutons */
  13.             }
  14.             .dt-paging-button.current, .dt-input, .paginate_button.current{
  15.                 background-color: #eeeeee !important; /* Couleur de fond des boutons */
  16.             }
  17.             .dt-button:hover{
  18.                 background-color: #0056b3 !important; /* Couleur de fond au survol */
  19.             }
  20.             /* Personnaliser btn-primary */
  21.             .btn-primary {
  22.                 background-color: #006288;
  23.                 border-color: #006288;
  24.             }
  25.             .btn-primary:hover {
  26.                 background-color: #3A4B92;
  27.                 border-color: #3A4B92;
  28.             }
  29.         </style>
  30.     </head>
  31.     <body style="background: linear-gradient(to bottom, #E4F5E6, #85DE92); background-size: cover; background-attachment: fixed;">
  32.         {% block body %}{% endblock %}
  33.         {% block javascripts %}{{ encore_entry_script_tags('app') }}{% endblock %}
  34.     </body>
  35. </html>