ispt4.0_laravel/resources/views/projectsClients/showDetailsEquipmentForQrCodePdf.blade.php
2024-02-12 17:47:22 +00:00

73 lines
1.4 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>Document</title>
<style>
.box-pai {
width: 65mm;
height: 95mm;
border: 3px solid #09255C;
}
.row {
background-color: #09255C;
height: 11mm;
}
.col {
width: 32.50%;
float: left;
}
.col-center{
padding-top: 4mm;
color: #fff;
}
.circle {
width: 10mm;
height: 10mm;
/* border: 1px solid blue; */
background-color: #fff;
border-radius: 50%;
}
.img-logo{
padding-left: 11mm;
width: 10mm;
height: 10mm;
}
</style>
</head>
<body>
<div class="box-pai">
<div class="row">
<div class="col">
<div class="circle"></div>
</div>
<div class="col col-center">
ISPT 4.0
</div>
<div class="col">
<img class="img-logo"
src="{{ public_path('/img/ispt/4.0/Ispt4.0_Símbolo_Fundo_Azul-Marinho@2x-100.jpg') }}"
alt="Logo Esquerdo">
</div>
</div>
</div>
</body>
</html>