MediaWiki:Common.css
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 */ /* Imposta il font di base */ @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap'); body { font-family: 'Orbitron', sans-serif !important; background-color: #0a0a0a !important; /* Sfondo scuro */ color: #c7c7c7 !important; /* Testo chiaro per contrasto */ } /* Stili per i titoli: colore fucsia scuro */ h1, h2, h3, h4, h5, h6 { color: #d60092 !important; /* Fucsia scuro */ text-shadow: none !important; /* Nessun effetto glow */ } /* Collegamenti */ a { color: #d60092 !important; /* Fucsia scuro */ text-decoration: none !important; /* Nessuna sottolineatura */ } a:hover { color: #ff66ff !important; /* Fucsia chiaro al passaggio del mouse */ text-decoration: underline !important; /* Sottolinea al passaggio del mouse */ } /* Box di navigazione e pannelli laterali con sfondo leggermente diverso */ .navbox, .sidebar { background-color: #121212 !important; /* Sfondo scuro per contrasto */ border: 1px solid #d60092 !important; /* Bordo fucsia scuro */ color: #c7c7c7 !important; /* Testo chiaro */ } /* Modifiche specifiche per le tabelle */ table { border-collapse: collapse !important; } table, th, td { border: 1px solid #d60092 !important; /* Bordo fucsia scuro per le tabelle */ } th, td { padding: 8px !important; /* Spaziatura */ text-align: left !important; /* Allineamento testo */ } /* Personalizza ulteriormente secondo le tue necessità */