templates/base_relatorio.html.twig line 1

  1. <!DOCTYPE html>
    <html>
        <head>
            <meta charset="UTF-8">
            <title>
                {% block title %}Welcome!
                {% endblock %}
            </title>
            <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700&display=fallback">
            <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>">
            <link rel="stylesheet" href="{{asset('adminLTE/plugins/fontawesome-free/css/all.min.css')}}">
            <link rel="stylesheet" href="{{asset('adminLTE/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css')}}">
            <link rel="stylesheet" href="{{asset('adminLTE/plugins/datatables-responsive/css/responsive.bootstrap4.min.css')}}">
            <link rel="stylesheet" href="{{asset('adminLTE/plugins/datatables-buttons/css/buttons.bootstrap4.min.css')}}">        
            <link rel="stylesheet" href="{{asset('adminLTE/plugins/jquery-ui/jquery-ui.min.css')}}">        
            {# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
            {% block stylesheets %}
                {{ encore_entry_link_tags('app') }}
                <link rel="stylesheet" href="{{asset('adminLTE/css/adminlte.min.css')}}">
            {% endblock %}
    
            {% block javascripts %}
                {{ encore_entry_script_tags('app') }}
                <script src="{{asset('adminLTE/js/adminlte.min.js')}}"></script>
                <script src="{{asset('adminLTE/plugins/jquery/jquery.min.js')}}"></script>
                <script src="{{asset('adminLTE/plugins/jquery-ui/jquery-ui.min.js')}}"></script>
                <!-- Bootstrap 4 -->
                <script src="{{asset('adminLTE/plugins/bootstrap/js/bootstrap.bundle.min.js')}}"></script>                        
                <script>
                    $(function () {
                        $(".date").datepicker({dateFormat: 'dd/mm/yy'});
    
    
                    });
                    function teste() {
                        $(".pesquisa").each(function () {
                            $(this).val('');
                        });
                    }
    
                    function immpressao(url) {
                        window.open(url)
                    }
                </script>                        
    
            {% endblock %}
        </head>
        <style>
            .nav-link {
                padding: 3px;
            }
            .btn-pesquisa a{
                margin-top:32px;
                border-radius: 0px;
            }        
            .content-header {
    
                padding:0px;
                padding-top: 10px;
            }
            .btn-pesquisa button{
                margin-top:32px;
                border-radius: 0px;
            }
            table thead th{
                background-color: #52796f;
                color: #cad2c5;
                font-weight: 400;
                height: 30px;
                pa
            }
            body{
    
                color: #344e41;
    
    
            }
            h2{
                font-size:35px;
                color:#344e41;
                font-weight:900
            }
            h1{
                font-size:35px;
                color:#02903e;
                font-weight:900
            }
            .table thead td table td{
                    border: 0;
            }    
            .table thead th{
                    border: 1px  #CCC;
                    border-style: solid;                
            }            
            .table tbody td{
                    border: 1px  #CCC;
                    border-style: solid;
                    height: 25px;
                    padding-left:5px;
            }
        </style>
        <body>
            <div class="content-fluid ">
    
                {% block body %}{% endblock %}
                
                    <div class="float-right d-none d-sm-block">
                        
    
                    </div>
    
    
            </div>
        </body>
    </html>