privacypatterns
privacypatterns copied to clipboard
print stylesheet
Current stylesheet removes all margins by default, which makes for a messy job when printing a pattern out onto paper. It would be nice to have a separate stylesheet or a media-query section that provides an appropriate layout for printing.
Perhaps this:
/* For printing, removes margin and contents, separates patterns into further pages */
@media print{
body{
margin: 0px;
}
#content {
display: block;
width: 100%;
}
}
I think actually we do want a margin on body for the print stylesheet, the lack of margin was part of the issue. But yeah, this would be a starting point, just needs a little testing.
@npdoty On FireFox 61.0.1 it looks like this with the above by default:

If, using the print settings on FF, we manually set margins to 0, it indeed has 0 margin (and doesn't even show header/footer). So it'll definitely need some cross-browser testing.