BRF-Medlem faviconBrf Mallen

document.addEventListener(’DOMContentLoaded’, (event) => { document.getElementById(’printButton’).addEventListener(’click’, function() {var printContents = document.querySelector(’.print-this-div’).innerHTML; // Open a new window var printWindow = window.open(); // Write the page contents to the new window printWindow.document.write(’Stadgar’); // Add your styles printWindow.document.write(” + ’body { font-family: system-ui; font-size: 1rem; }’ + ’ figure {margin: unset;}’ + ’figure img {max-width: 250px; height: auto;}’ + ’.wrapper { width: fit-content; padding: 1rem 1.5rem; }’ + ’h1 { margin-block-end: 0; text-transform: uppercase; font-weight: 300; }’ + ’h2 { margin-top: 0px; }’ + ’h2 a { text-decoration: none; color: black;; }’ + ’h4 { margin-block-start: 0.5em; margin-block-end: 0; }’ + ’h4 a { color: black; font-size: 1rem; }’ + ’h5 { margin-block-start: 70px; margin-block-end: 0px; text-transform: uppercase; }’ + ’p { color: black; margin-block-start: 4px; max-width: 840px; }’ + ’h6 { padding: 30px 0; }’ + ’#printButton { display: none; }’ + ”); printWindow.document.write(”); printWindow.document.write(’
’ + printContents + ’
’); printWindow.document.write(”); printWindow.document.close(); // Document writing finished // Call print after a delay setTimeout(function() {printWindow.print();}, 200);});});