cmtracker/templates/internal/admin/company/docs/display-document.html.twig
Ryan Prather 82ee30a724 add: CompanyDocument
Add class
* Add CompanyDocument class, associated repo and twig files
2025-01-21 14:23:14 -05:00

50 lines
1.1 KiB
Twig

<!DOCTYPE html>
<html lang="en">
<head>
<style type='text/css' rel='stylesheet'>
body {
margin: 0;
}
.sheet-outer {
margin: 0;
}
.sheet {
margin: 0;
overflow: hidden;
page-break-after: always;
}
@media screen {
body {
background: #e0e0e0;
}
.sheet {
background: #ffffff;
box-shadow: 0 .5mm 2mm rgba(0,0,0,.3);
margin: 5mm auto;
}
}
@media print {
}
@page {
size: letter;
margin: 0;
}
</style>
</head>
<body>
<header id="header" style='height:100px;'>
<img id="companyLogo" src='{{ company_image_path }}/{{ company.companyLogo }}' style='height:100px;width:100px;'/>
</header>
<main id="body">
<section id='doc-content'></section>
</main>
<footer id='footer'>
</footer>
</body>
</html>