121 lines
3.7 KiB
PHP
121 lines
3.7 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<title>Documento Rotacionado</title>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
|
|
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
|
|
table,
|
|
th,
|
|
td {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 5px;
|
|
text-align: left;
|
|
}
|
|
|
|
/* h4 {
|
|
margin: 0;
|
|
}
|
|
|
|
.w-full {
|
|
width: 100%;
|
|
}
|
|
|
|
.w-half {
|
|
width: 50%;
|
|
} */
|
|
|
|
/* .margin-top {
|
|
margin-top: 1.25rem;
|
|
}
|
|
|
|
.footer {
|
|
font-size: 0.875rem;
|
|
padding: 1rem;
|
|
background-color: rgb(241 245 249);
|
|
} */
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
{{-- <div class="table-responsive table-container">
|
|
<table class="table">
|
|
<tr>
|
|
<th colspan="13" style="background-color: #123456; border: 2px solid red;"> <!-- Substitua #123456 pela cor azul escura desejada -->
|
|
<div style="display: flex; justify-content: space-between; align-items: center; height: 80px;border: 2px solid yellow;">
|
|
<img src="{{ public_path('/img/ispt.jpg') }}" alt="Logo Esquerdo" style="opacity: .8; height: 80px;border: 2px solid green;"> <!-- Ajuste a altura conforme necessário -->
|
|
<img src="{{ $userLogoPath }}" alt="User Logo" class="img-circle elevation-2 imgProfile editImg" style="opacity: .8; height: 80px;border: 2px solid green;"> <!-- Ajuste a altura conforme necessário -->
|
|
</div>
|
|
</th>
|
|
</tr> --}}
|
|
|
|
<div class="table-responsive table-container">
|
|
<table class="table">
|
|
<tr>
|
|
<th colspan="13" style="background-color: #123456;">
|
|
<div style="display: flex; justify-content: space-around; align-items: center; height: 80px;">
|
|
<img src="{{ public_path('/img/ispt.jpg') }}" alt="Logo Esquerdo"
|
|
style="max-height: 80px; max-width: 40%; margin: 0 10px;">
|
|
<img src="{{ $userLogoPath }}" alt="User Logo"
|
|
style="max-height: 80px; max-width: 40%; margin: 0 10px;">
|
|
</div>
|
|
</th>
|
|
</tr>
|
|
<tr>
|
|
<th>Nº ISPT</th>
|
|
<th>Unidade</th>
|
|
<th>Tag Nº</th>
|
|
<th>Dim</th>
|
|
<th>#</th>
|
|
<th>Localizacao</th>
|
|
<th>PI&D</th>
|
|
<th>Ambito</th>
|
|
<th>Obsercoes</th>
|
|
<th>Andaime</th>
|
|
<th>Isolamento</th>
|
|
<th>Grua</th>
|
|
<th>Conclusao</th>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
{{--
|
|
<div class="container text-center">
|
|
<div class="row">
|
|
<div class="col">
|
|
Column
|
|
</div>
|
|
<div class="col">
|
|
Column
|
|
</div>
|
|
<div class="col">
|
|
Column
|
|
</div>
|
|
</div>
|
|
</div> --}}
|
|
|
|
</body>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
|
|
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous">
|
|
</script>
|
|
|
|
</html>
|