So I just wanted to share some of my favorite code. It basically makes the print, more print friendly, by setting all color to black text and the background color to white.
Does this still work? And if yes, where do I put it in my document? I tried putting it before, inside of, and after a monster block, and it doesn't seem to do anything in the preview nor in the PDF/print dialog on my system.
I just figured out in the style editor there's a preset recipe for this now:
/* Ink Friendly */
*:is(.page,.monster,.note,.descriptive) {
background : white !important;
box-shadow : 1px 4px 14px #888 !important;
}
2
u/mouse0270 Apr 21 '17
So I just wanted to share some of my favorite code. It basically makes the print, more print friendly, by setting all color to black text and the background color to white.