MediaWiki:Common.css: Difference between revisions

From Fables and Fantasy Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */


/* Changes the background colour of the bottom and left of the page, up to behind half of the logo: */
/* background color of the content title and pages */ #content { background-color: #F1E9D2; }
body {background: #704B2E;)
 
/* background color of the content title and pages */  
#content { background-color: #F1E9D2; }


/* === Import IM Fell English from Google Fonts === */
/* === Import IM Fell English from Google Fonts === */

Revision as of 12:14, 5 July 2025

/* CSS placed here will be applied to all skins */

/* background color of the content title and pages */ #content { background-color: #F1E9D2; }

/* === Import IM Fell English from Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=IM+Fell+English:ital@0;1&display=swap');

/* === Make it the default font for all page content === */
body,
#content,
#mw-content-text,
#mw-content-text p,
#mw-content-text li,
#mw-content-text td,
#mw-content-text th,
#mw-content-text a,
#mw-panel,
.vector-menu,
#p-personal,
#footer {
  font-family: "IM Fell English", serif !important;
}

/* === Headings use IM Fell English too === */
h1, h2, h3, h4, h5, h6 {
  font-family: "IM Fell English", serif !important;
}

/* === Optional CSS classes for inline use === */
.im-fell-english-regular {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-style: normal;
}

.im-fell-english-regular-italic {
  font-family: "IM Fell English", serif;
  font-weight: 400;
  font-style: italic;
}