53 lines
1.7 KiB
PHP
Executable File
53 lines
1.7 KiB
PHP
Executable File
<!doctype html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Etichetta Faldone</title>
|
|
<style>
|
|
@page { margin: 0; }
|
|
body { margin: 0; font-family: Arial, Helvetica, sans-serif; }
|
|
|
|
/* Dymo 99014 / S0722430: 54mm x 101mm */
|
|
.label {
|
|
width: 101mm;
|
|
height: 54mm;
|
|
padding: 4mm;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.title { font-size: 20px; font-weight: 800; line-height: 1.1; }
|
|
.meta { font-size: 12px; color: #222; line-height: 1.25; }
|
|
.code { font-size: 16px; font-weight: 800; letter-spacing: .6px; }
|
|
.divider { border-top: 2px solid #000; margin: 3mm 0; }
|
|
|
|
@media print { .no-print { display: none; } }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="label">
|
|
<div>
|
|
<div class="title">FALDONE {{ strtoupper((string) $faldone) }}</div>
|
|
<div class="meta" style="margin-top: 2mm;">
|
|
<div><strong>Stabile:</strong> {{ $stabile->denominazione ?: ('ID ' . (int) $stabile->id) }}</div>
|
|
<div><strong>Anno:</strong> {{ $anno }}</div>
|
|
</div>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<div class="code">{{ $codiceUnico }}</div>
|
|
<div class="meta">Codice leggibile per archiviazione rapida</div>
|
|
</div>
|
|
|
|
<div class="no-print" style="padding-top: 6px;">
|
|
<button onclick="window.print()">Stampa</button>
|
|
<button onclick="window.close()">Chiudi</button>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|