Jump to content

MediaWiki:Common.css: Difference between revisions

From greyhawk
mNo edit summary
mNo edit summary
Line 45: Line 45:
   font-size:  3em;
   font-size:  3em;
   font-variant: small-caps;
   font-variant: small-caps;
/*
  color: #800000;
  padding: 5px;
  margin: 0px;
  text-align: left;
*/
}
}


Line 59: Line 53:
   font-size:  2.5em;
   font-size:  2.5em;
   font-variant: small-caps;
   font-variant: small-caps;
/*
  color: #800000;
  padding: 5px;
  margin: 0px;
  text-align: left;
*/
}
}


/* h3 sets the subheading 1 category... */
/* h3 sets the subheading 1 category... */
Line 73: Line 60:
   font-weight: normal;
   font-weight: normal;
   font-style: normal;
   font-style: normal;
   font-size: 2.5em;
   font-size: 2em;
   font-variant: small-caps;
   font-variant: small-caps;
/*
  color: #800000;
  padding: 5px;
  margin: 0px;
  text-align: left;
*/
}
}


/* h4 sets the subheading 2 category... */
/* h4 sets the subheading 2 category... */
Line 92: Line 72:
   font-size: 2em;
   font-size: 2em;
   font-variant: small-caps;
   font-variant: small-caps;
text-decoration: underline;   
  text-decoration: underline;   
}
 
/* h5 sets the subheading 3 category... */
/*
/*
   color: #800000;
h5 {
   padding: 5px;
  font-family: "Century Schoolbook";
   margin: 0px;
  font-weight: normal;
   text-align: left;
   font-style: normal;
*/
   font-size: 1.5em;
   font-variant: small-caps;
   text-decoration: underline;
}
}


/* h6 sets the subheading 4 category... */
/* h6 sets the subheading 4 category... */
/*
h6 {
h4 {
   font-family: "CasablancaAntique", Arial, Helvetica, sans-serif;
   font-family: "CasablancaAntique", Arial, Helvetica, sans-serif;
  font-size: 7em;
}
}
*/

Revision as of 21:22, 24 October 2023

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

@font-face {
  font-family: "Andada";
  src: url("https://www.bonemarch.org/fonts/AndadaPro-Italic-VariableFont_wght.ttf");
}

@font-face {
  font-family: "Andada SC";
  src: url("https://www.bonemarch.org/fonts/AndadaPro-VariableFont_wght.ttf");
}

@font-face {
  font-family: "Cormorant-Regular";
  src: url("https://www.bonemarch.org/fonts/Cormorant-Regular.ttf");
}

@font-face {
  font-family: "CasablancaAntique";
  src: url("https://www.bonemarch.org/fonts/CasablancaAntique.ttf");
}

@font-face {
  font-family: "Century Schoolbook";
  src: url("https://www.bonemarch.org/fonts/CENSCBK.TTF");
}

/*
  For a graceful fallback if the fonts are not available use the following order...
  font-family: "Andada SC", "Cormorant-Regular", "CasablancaAntique", Arial, Helvetica, sans-serif;
*/

/* Set default font for the whole site, individual elements can override this */
body {
  font-family:  "Century Schoolbook";
  font-size: 1.5 em;
  font-weight: normal;
}


h1{
  font-family:  "Century Schoolbook";
  font-weight: normal;
  font-style: normal;
  font-size:  3em;
  font-variant: small-caps;
}

h2 {
  font-family: "Century Schoolbook";
  font-weight: normal;
  font-style: normal;
  font-size:  2.5em;
  font-variant: small-caps;
}

/* h3 sets the subheading 1 category... */
h3 {
  font-family: "Century Schoolbook";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  font-variant: small-caps;
}

/* h4 sets the subheading 2 category... */
/*
h4 {
  font-family: "Century Schoolbook";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  font-variant: small-caps;
  text-decoration: underline;  
}

/* h5 sets the subheading 3 category... */
/*
h5 {
  font-family: "Century Schoolbook";
  font-weight: normal;
  font-style: normal;
  font-size: 1.5em;
  font-variant: small-caps;
  text-decoration: underline;  
}

/* h6 sets the subheading 4 category... */
h6 {
  font-family: "CasablancaAntique", Arial, Helvetica, sans-serif;
}