MediaWiki:Print.css: Difference between revisions

From Mutant Year Zero
(Blanked the page)
Tag: Blanking
mNo edit summary
Line 1: Line 1:
 
/************/
/* PRINTING */
/************/
@media print
{   
  body, .mw-page-container {
    background: none;
  }
  mw-body, .mw-content-container {
    background: none;
    border: none;
  }
  .mw-header, .mw-panel-toc {
    height:0px;
    display:none;
  }
  .mw-category-generated {
    display:none;
  }
  a {
    text-decoration:none !important;
    border-bottom: none !important;
    color: #000 !important;
  }
  a:visited {
    color: #000 !important;
text-decoration: none !important;
  }
  a[href]:after {
    content: none !important;
  }
  .container .rpgtable td, .container .rpgtable th {
font-size:90%;
  }
  .rpgtable td, .rpgtable th  {
    height: 28px;
  }
  .printfooter {
    display: none;
  }
}

Revision as of 14:14, 16 December 2023

/************/
/* PRINTING */
/************/
@media print
{    
  body, .mw-page-container {
    background: none;
  }
  mw-body, .mw-content-container {
    background: none;
    border: none;
  }
  .mw-header, .mw-panel-toc {
    height:0px;
    display:none;
  }
  .mw-category-generated {
    display:none;
  }
  a {
    text-decoration:none !important;
    border-bottom: none !important;
    color: #000 !important;
  }
  a:visited {
    color: #000 !important;
	text-decoration: none !important;
  }
  a[href]:after {
    content: none !important;
  }
  .container .rpgtable td, .container .rpgtable th {
	font-size:90%;
  } 
  .rpgtable td, .rpgtable th  {
    height: 28px;
  }
  .printfooter { 
    display: none; 
  }
}