MediaWiki:Timeless.css: Difference between revisions

From Ghost Theory Wiki
No edit summary
Tag: Bots
No edit summary
Tag: Bots
Line 82: Line 82:
}
}


/* FORCE Alegreya on the actual Timeless title element */
h1.mw-page-title-main {
    font-family: "Alegreya", serif !important;
}


 
/* FORCE Alegreya by overriding Timeless's shorthand font rule */
 
.mw-body-header h1,
 
#content h1,
/* DIAGNOSTIC: force Alegreya on every possible Timeless title element */
h1 {
h1,
     font: 600 1em "Alegreya", serif !important;
h1#firstHeading,
h1.mw-first-heading,
h1.mw-title,
h1.mw-page-title-main {
     font-family: "Alegreya", serif !important;
}
 
 
/* DIAGNOSTIC: paint every possible title element bright red */
h1,
h2,
h3,
.mw-body-header *,
.mw-body *,
#content *,
#mw-content-text *,
#mw-content-text h1,
#mw-content-text h2,
#mw-content-text span,
#mw-content-text div {
    color: red !important;
}
}

Revision as of 05:52, 11 January 2026

#ca-talk { display: none !important; }

/* Hide the entire Anonymous dropdown menu in Timeless */
#p-personal,
#personal,
#user-tools {
    display: none !important;
}

.quote-box {
    padding: 1em 1.2em;
    margin: 1.5em 0;
    background: #f2f2f2;
    border-left: 4px solid #ccc;
    border-radius: 4px;
    color: #222;
}

/* Gray background box for FAQ questions */
.faq-question {
    background-color: #f2f3f4;   /* light gray that fits your Timeless theme */
    padding: .2em;               /* space inside the box */
    margin: .5em 0;              /* space between boxes */
    border-radius: 2px;         /* optional: soft corners */

}

/* Make the heading smaller INSIDE the FAQ box */
h3 .faq-question {
    background-color: #f2f3f4;
    padding: .2em;
    border-radius: 2px;
    font-size: .8em !important;
}

/* Hide all category links on article pages */
#catlinks {
    display: none !important;
}

/* Hide empty category page warnings and edit notices */
body.page-Category .mw-parser-output > p,
body.page-Category .noarticletext,
body.page-Category .mw-empty-elt,
body.page-Category #contentSub,
body.page-Category #contentSub2 {
    display: none !important;
}

/* Hide the "Category" tab on category pages (optional) */
body.ns-14 #ca-nstab-category {
    display: none !important;
}

/* Hide all category displays in Timeless */
#catlinks,
.catlinks,
.mw-normal-catlinks,
.mw-hidden-catlinks,
#mw-normal-catlinks,
#mw-hidden-catlinks {
    display: none !important;
}

/* Universal kill-switch for Timeless page tools */
#mw-related-navigation,
#page-tools,
#page-tools-wrapper,
#mw-panel .page-tools,
.sidebar-chunk.page-tools {
    display: none !important;
}

@import url('https://fonts.googleapis.com/css2?family=Alegreya:wght@400;500;600;700&display=swap');

/* Final styling for the page title ("Main Page") */
body .mw-page-title-main {
    font-size: 1em !important;
    color: #989898 !important;
    font-weight: 600;
    /* no font-family here */
}


/* FORCE Alegreya by overriding Timeless's shorthand font rule */
.mw-body-header h1,
#content h1,
h1 {
    font: 600 1em "Alegreya", serif !important;
}