A simple stylesheet for printing. Hides sidebar and navbar and makes the background transparent.
2e.aonprd.com print stylesheet by rafauke

Details
Authorrafauke
LicenseNo License
Category2e.aonprd.com
Created
Updated
Code size1.0 kB
Code checksum5776a2f7
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name 2e.aonprd.com @print
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A simple stylesheet for printing. Hides sidebar and navbar.
@author Ralf
==/UserStyle== */
@-moz-document url-prefix("https://2e.aonprd.com") {
/* Insert code here... */
@media print {
body:not(.old).fixedSidebar #wrapper {
width: 100% !important;
margin: 0;
}
#ctl00_RadDrawer1_Content_MainContent_Navigation h1 {
font-size: 14pt;
}
#main-wrapper {
background: #fff;
width: 100% !important;
padding: 0;
}
#main-wrapper.compressed {
background: white;
}
#footer {
background-color: #fff;
}
body {
background-color: transparent !important;
padding: 0 !important;
}
.header, .new-navbar, .RadDrawer, .siderbarlook {
display: none;
}
}
}