templates/base_relatorio.html.twig line 1

  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="UTF-8">
  5.         <title>
  6.             {% block title %}Welcome!
  7.             {% endblock %}
  8.         </title>
  9.         <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
  10.         <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
  11.         <link rel="stylesheet" href="{{asset('adminLTE/plugins/fontawesome-free/css/all.min.css')}}">
  12.         <link rel="stylesheet" href="{{asset('adminLTE/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css')}}">
  13.         <link rel="stylesheet" href="{{asset('adminLTE/plugins/datatables-responsive/css/responsive.bootstrap4.min.css')}}">
  14.         <link rel="stylesheet" href="{{asset('adminLTE/plugins/datatables-buttons/css/buttons.bootstrap4.min.css')}}">        
  15.         <link rel="stylesheet" href="{{asset('adminLTE/plugins/jquery-ui/jquery-ui.min.css')}}">        
  16.         {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
  17.         {% block stylesheets %}
  18.             {{ encore_entry_link_tags('app') }}
  19.             <link rel="stylesheet" href="{{asset('adminLTE/css/adminlte.min.css')}}">
  20.         {% endblock %}
  21.         {% block javascripts %}
  22.             {{ encore_entry_script_tags('app') }}
  23.             <script src="{{asset('adminLTE/js/adminlte.min.js')}}"></script>
  24.             <script src="{{asset('adminLTE/plugins/jquery/jquery.min.js')}}"></script>
  25.             <script src="{{asset('adminLTE/plugins/jquery-ui/jquery-ui.min.js')}}"></script>
  26.             <!-- Bootstrap 4 -->
  27.             <script src="{{asset('adminLTE/plugins/bootstrap/js/bootstrap.bundle.min.js')}}"></script>                        
  28.             <script>
  29.                 $(function () {
  30.                     $(".date").datepicker({dateFormat: 'dd/mm/yy'});
  31.                 });
  32.                 function teste() {
  33.                     $(".pesquisa").each(function () {
  34.                         $(this).val('');
  35.                     });
  36.                 }
  37.                 function immpressao(url) {
  38.                     window.open(url)
  39.                 }
  40.             </script>                        
  41.         {% endblock %}
  42.     </head>
  43.     <style>
  44.         .nav-link {
  45.             padding: 3px;
  46.         }
  47.         .btn-pesquisa a{
  48.             margin-top:32px;
  49.             border-radius: 0px;
  50.         }        
  51.         .content-header {
  52.             padding:0px;
  53.             padding-top: 10px;
  54.         }
  55.         .btn-pesquisa button{
  56.             margin-top:32px;
  57.             border-radius: 0px;
  58.         }
  59.         table thead th{
  60.             background-color: #52796f;
  61.             color: #cad2c5;
  62.             font-weight: 400;
  63.             height: 30px;
  64.             pa
  65.         }
  66.         body{
  67.             color: #344e41;
  68.         }
  69.         h2{
  70.             font-size:35px;
  71.             color:#344e41;
  72.             font-weight:900
  73.         }
  74.         h1{
  75.             font-size:35px;
  76.             color:#02903e;
  77.             font-weight:900
  78.         }
  79.         .table thead td table td{
  80.                 border: 0;
  81.         }    
  82.         .table thead th{
  83.                 border: 1px  #CCC;
  84.                 border-style: solid;                
  85.         }            
  86.         .table tbody td{
  87.                 border: 1px  #CCC;
  88.                 border-style: solid;
  89.                 height: 25px;
  90.                 padding-left:5px;
  91.         }
  92.     </style>
  93.     <body>
  94.         <div class="content-fluid ">
  95.             {% block body %}{% endblock %}
  96.             
  97.                 <div class="float-right d-none d-sm-block">
  98.                     
  99.                 </div>
  100.         </div>
  101.     </body>
  102. </html>