/* special css file for media=print, to hide and change some elements */ /* this is additive to the style_template.css */ /*********************** change positions to absolute to avoid printing the title and table of contents on every page. Remove the Quicklink toc on the right. Make toc on the left floating on top of middle div. ************************/ html, body { height: initial; width: 115%; /* fix for scaling done by split.js */ } div.head { position: relative; margin-top: 50px; text-align: left; } .split.split-horizontal { float: unset; } div.lefttoc { position: relative; margin: -50px 10% 100px 10%; top: 100px; border: none; overflow: visible; } div.middle { position: relative; margin: 200px 0px 0 10px; /* top right bottom left */ /* margin: x y = Xpx each - botten and top, ypx each - left and right */ overflow: visible; } /* quick links are not necessary for printing */ div.righttoc { display: none; } #pre_toggle_linewrap { display: none; } /* revert pre settings in case they have been toggled*/ pre { white-space: pre-wrap; word-wrap: break-word; }