MediaWiki:Common.css

From QuatenusWiki
Revision as of 11:06, 22 April 2026 by Administrator (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins 
body {
  background-color: #F27A35;
}
*/

@media print {

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1 {
    font-size: 22pt;
    page-break-before: always;
  }

  /* Evita quebra antes do primeiro título */
  h1:first-of-type {
    page-break-before: avoid;
  }

  h2 {
    font-size: 16pt;
    page-break-before: always;
    page-break-after: avoid;
  }

  h3 {
    page-break-after: avoid;
  }

  /* Evita tabelas partidas */
  table, tr, td, th {
    page-break-inside: avoid;
  }

  /* Evita blocos de código partidos */
  pre {
    page-break-inside: avoid;
    white-space: pre-wrap;
  }

}