templates/base.html.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1">
  7.         <!-- imports -->
  8.         <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,800">
  9.         <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.0/font/bootstrap-icons.css">
  10.         <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.3.1/css/all.min.css" rel="stylesheet">
  11.         <!-- CSS only -->
  12.         <link href="{{asset("assets/bootstrap/css/bootstrap.min.css")}}" rel="stylesheet">
  13.         
  14.         <title>{% block title %}Welcome!{% endblock %}</title>
  15.         {# Run `composer require symfony/webpack-encore-bundle`
  16.            and uncomment the following Encore helpers to start using Symfony UX #}
  17.         <link rel="icon" href="{{asset('assets/img/dsBuffer.bmp.png')}}">
  18.         {% block stylesheets %}
  19.             {#{{ encore_entry_link_tags('app') }}#}
  20.         {% endblock %}
  21.         <style>
  22.             .dropdown-item.active{
  23.                 background-color : #6c757d!important;
  24.             }
  25.             .dropdown-item:active  {
  26.                 background-color: #6c757d!important;
  27.             }
  28.             .btn-ease {
  29.                 color: #fff;
  30.                 background-color: #009cde;
  31.                 border-color: #009cde;
  32.                 border-radius: 35px;
  33.             }
  34.             
  35.             .form-label{
  36.                 margin-left : 10px;
  37.                 font-weight:bold;
  38.             }
  39.             
  40.             legend{
  41.                 margin-left : 10px;
  42.                 font-weight:bold;
  43.             }
  44.             select{
  45.                 background-color: #eee;
  46.                 border: none;
  47.                 border-radius: 35px !important;
  48.                 width: 100%;
  49.             }
  50.             textarea{
  51.                 background-color: #eee;
  52.                 border: none;
  53.                 border-radius: 20px !important;
  54.                 width: 100%;
  55.             }
  56.             
  57.             input {
  58.                 background-color: #eee;
  59.                 border: none;
  60.                 border-radius: 35px !important;
  61.                 width: 100%;
  62.             }
  63.             input[type="checkbox"] {
  64.                 border-radius: unset !important;
  65.             }
  66.             .btn-ease:hover {
  67.                 color: #fff;
  68.                 background-color: #007cde;
  69.                 border-color: #007cde;
  70.                 border-radius: 35px;
  71.             }
  72.         </style>
  73.     </head>
  74.     <body>
  75.         {% block body %}{% endblock %}
  76.     </body>
  77.     <!-- JavaScript Bundle with Popper -->
  78.     <script src="{{asset("assets/bootstrap/js/bootstrap.bundle.js")}}"></script>
  79.     {% block javascripts %}
  80.             {#{{ encore_entry_script_tags('app') }}#}
  81.     {% endblock %}
  82. </html>