MediaWiki:Timeless.css: Difference between revisions

From Ghost Theory Wiki
No edit summary
Tag: Bots
No edit summary
Tag: Bots
Line 74: Line 74:
@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;500;600;700&display=swap');


/* Final styling for the page title ("Main Page") */
.mw-page-header h1,
body .mw-page-title-main {
.mw-body-header h1 {
     font-size: 1em !important;
     font-family: 'Alegreya', serif !important;
     color: #989898 !important;
     font-size: 1rem !important; /* adjust to taste */
     font-weight: 600;
     font-weight: 600 !important;
     /* no font-family here */
     color: #989898 !important; /* or whatever your theme uses */
}
 
 
/* FORCE Alegreya by overriding Timeless's shorthand font rule */
.mw-body-header h1,
#content h1,
h1 {
    font: 600 1em "Alegreya", serif !important;
}
 
 
 
/* DIAGNOSTIC: outline every h1, every header, every title-like container */
h1, header, .mw-body-header, #mw-content-header, .page-header, .page-title {
    outline: 3px solid magenta !important;
}
}