Naar inhoud springen

MediaWiki:Print.css: verschil tussen versies

Uit CostaSano-Wiki
Nieuwe pagina aangemaakt met 'CSS die hier wordt geplaatst heeft alleen invloed op de printuitvoer: ===== Print stylesheet for clean PDF export =====: @media print { Page margins (browser respects @page, not body margin): @page { margin-top: 2cm; margin-bottom: 2cm; margin-left: 1.5cm; margin-right: 1.5cm; Footer with page numbers: @bottom-center { content: "Page " counter(page); font-size: 10pt; } } /* Reset body margi…'
 
Geen bewerkingssamenvatting
Regel 59: Regel 59:
   }
   }


   /* Optional: force page breaks before major sections */
   /* Optional: force page breaks before major sections  
   h1 {
   h1 {
     page-break-before: always;
     page-break-before: always;
   }
   }
  */


   /* Table styling for clean PDF output */
   /* Table styling for clean PDF output */

Versie van 10 dec 2025 21:44

/* CSS die hier wordt geplaatst heeft alleen invloed op de printuitvoer */

/* ===== Print stylesheet for clean PDF export ===== */
@media print {
  /* Page margins (browser respects @page, not body margin) */
  @page {
    margin-top: 2cm;
    margin-bottom: 2cm;
    margin-left: 1.5cm;
    margin-right: 1.5cm;

    /* Footer with page numbers */
    @bottom-center {
      content: "Page " counter(page);
      font-size: 10pt;
    }
  }

  /* Reset body margin so @page takes effect */
  body {
    margin: 0;
    font-family: "Liberation Serif", Georgia, serif;
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
  }

  /* Hide navigation, sidebar, edit links, and footer clutter */
  #mw-panel, #footer, .mw-editsection, .noprint {
    display: none !important;
  }

  /* Header logo + club name positioned absolutely */
  .print-header {
    position: fixed;
    top: 0.5cm;
    left: 0;
    right: 0;
    text-align: right;
    font-size: 10pt;
  }
  .print-header img {
    float: left;
    height: 30px;
    margin-right: 1em;
  }

  /* Headings styling */
  h1, h2, h3 {
    color: #003366;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.2em;
  }

  /* References formatting */
  .references {
    font-size: 10pt;
    line-height: 1.2;
  }

  /* Optional: force page breaks before major sections 
  h1 {
    page-break-before: always;
  }
  */

  /* Table styling for clean PDF output */
  table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
  }
  table, th, td {
    border: 1px solid #666;
    padding: 6px;
  }
  th {
    background-color: #f0f0f0;
    font-weight: bold;
  }
}
/* ===== End print stylesheet ===== */