Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Citizen.css

MediaWiki interface page
Revision as of 17:27, 14 October 2025 by Cranio is thinking (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)
  • Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
/* All CSS here will be loaded for users of the Citizen skin */
/* Uniforma il colore di sfondo del footer con quello della pagina */
/*#footer {
/*    background-color: var(--citizen-background);
/*    color: inherit;
/*    border-top: none;
/*    box-shadow: none;
/*}

/* All CSS here will be loaded for users of the Citizen skin */

/* Footer minimale e senza stacco visivo */
#footer,
.citizen-footer,
.citizen-footer__container {
    background-color: var(--citizen-background) !important;
    color: inherit !important;
    border-top: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 0.25em 0 !important;
}

/* Rimuove blocchi interni superflui del footer Citizen */
.citizen-footer__sections,
.citizen-footer__divider,
.citizen-footer__credits,
#footer-places,
#footer-icons {
    display: none !important;
}

/* Testo centrato, piccolo e armonizzato con il resto della pagina */
#footer {
    text-align: center !important;
    font-size: 0.85em !important;
    opacity: 0.7;
    line-height: 1.4;
}

/* --- Correzione allineamento e margini footer --- */
#footer,
.citizen-footer,
.citizen-footer__container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Mantiene il testo centrato anche su schermi larghi */
#footer p {
    margin: 0 auto !important;
    max-width: 900px !important;
}