scinote-web/app/views/reports/templates/scinote_template/header.html.erb

51 lines
1,019 B
Text

<!-- margins: top:2cm,bottom:2cm,left:1cm,right:1.5cm -->
<!-- First line represents margins for pdf generation by Grover -->
<style>
.print-header {
display: flex;
justify-content: space-between;
align-items: center;
line-height: 40px;
font-size: 13px;
width: 100%;
position: relative;
}
.print-header::after {
content: "";
position: absolute;
left: 40px;
right: 40px;
bottom: 0;
border-bottom: 2px solid #a0a0a8;
z-index: -1;
}
.logo-img {
display: inline-block;
margin: 0 0 0 70px;
}
img {
width: 80px;
}
.page-numbers {
display: inline-block;
padding-right: 60px;
white-space: nowrap;
}
</style>
<div class="print-header">
<div class="logo-img">
<% if logo == 'scinote_logo.svg' %>
<%= image_tag wicked_pdf_asset_base64(logo) %>
<% else %>
<%= image_tag logo %>
<% end %>
</div>
<div class="page-numbers">
Page <span class="pageNumber"></span> of <span class="totalPages"></span>
</div>
</div>