« MediaWiki:Common.css » : différence entre les versions

De WikiFM
(Page créée avec « →‎Le CSS placé ici sera appliqué à tous les habillages. : @import url( 'https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif '); →‎Changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text): : body { font-family: "Noto Sans", sans-serif; } →‎Changes the default font used for MediaWiki headings to Noto Serif: : #content h1, #content h2 { font-family: "Noto Serif", serif; } »)
 
Aucun résumé des modifications
Ligne 1 : Ligne 1 :
/* Le CSS placé ici sera appliqué à tous les habillages. */
/* Le CSS placé ici sera appliqué à tous les habillages. */


@import url( 'https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif ');
@import url( 'https://fonts.googleapis.com/css?family=Playfair+Display');


/* Changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text): */
/* Changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text): */
body {
/*body {
  font-family: "Noto Sans", sans-serif;
/*  font-family: "Noto Sans", sans-serif;
}
/*}


/* Changes the default font used for MediaWiki headings to Noto Serif: */
/* Changes the default font used for MediaWiki headings to Playfair Display: */
#content h1,  
#content h1,  
#content h2 {
#content h2 {
   font-family: "Noto Serif", serif;
   font-family: 'Playfair Display', serif;
}
}

Version du 8 juillet 2022 à 11:51

/* Le CSS placé ici sera appliqué à tous les habillages. */

@import url( 'https://fonts.googleapis.com/css?family=Playfair+Display');

/* Changes the default font used for MediaWiki to Noto Sans (does not include headings or monospaced text): */
/*body {
/*  font-family: "Noto Sans", sans-serif;
/*}

/* Changes the default font used for MediaWiki headings to Playfair Display: */
#content h1, 
#content h2 {
  font-family: 'Playfair Display', serif;
}