Print.CSS for Tiddlers

Is there any print.css allow you to print a river of tiddlers each in separate page with a customizable header footer?

I am aware of @BurningTreeC print plugin. But Here I just want a simple stylesheet to allow this.

This is a section in my custom CSS tiddler which handles everything including print, the file has a tag

$:/tags/Stylesheet so that it gets picked up by TW as CSS.

/* I would like tags to be printed when I print out a tiddler but not the more details bit*/
@media print {.tc-tags-wrapper {display: block ! important;}} 
@media print {.tc-btn-invisible {display: block ! important;}}
@media print { details[open] > summary { display: none; }}
@media print {.tc-subtitle {display: none;}}   /* not the date */ 
@media print {.tc-rating {display: none;}}   /* not the star rating */
@media print {.viewtemplatebigtext {display: none;}}   /* not backlinks */
3 Likes