Jump to content

MediaWiki:Common.css: Difference between revisions

From greyhawk
Created page with "CSS placed here will be applied to all skins: @font-face { font-family: "Andada"; src: url("https://www.greyhawk.icu/fonts/AndadaPro-VariableFont_wght.ttf"); } @font-face { font-family: "Cormorant-Regular"; src: url("https://www.greyhawk.icu/fonts/Cormorant-Regular.ttf"); } @font-face { font-family: "CasablancaAntique"; src: url("https://www.greyhawk.icu/fonts/CasablancaAntique.ttf"); } * { /* Set default font for the whole site, individual elemen..."
 
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 */
@font-face {
  font-family: "Century Schoolbook";
  src: url("https://www.greyhawk.icu/fonts/CENSCBK.TTF");
}


@font-face {
@font-face {
Line 19: Line 24:
* {
* {
   /* Set default font for the whole site, individual elements can override this */
   /* Set default font for the whole site, individual elements can override this */
   font-family: "Cormorant-Regular", "Andada", Verdana, Arial, Helvetica,
   font-family: "Century Schoolbook", "Cormorant-Regular", "Andada", Verdana, Arial, Helvetica,
     sans-serif;
     sans-serif;
   font-weight: normal;
   font-weight: normal;
Line 30: Line 35:
   font-weight: normal;
   font-weight: normal;
   font-style: normal;
   font-style: normal;
   font-size: 2.5em;
   font-size: 16pt;
  padding: 5px;
  margin: 0px;
}
 
h3 {
  font-family: "Andada", Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 12pt;
  text-decoration: underline;
   padding: 5px;
   padding: 5px;
   margin: 0px;
   margin: 0px;
}
}

Revision as of 01:17, 31 July 2022

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

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

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

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

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


* {
  /* Set default font for the whole site, individual elements can override this */
  font-family: "Century Schoolbook", "Cormorant-Regular", "Andada", Verdana, Arial, Helvetica,
    sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: em;
}

h2 {
  font-family: "Cormorant-Regular", "CasablancaAntique", Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16pt;
  padding: 5px;
  margin: 0px;
}

h3 {
  font-family: "Andada", Arial, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 12pt;
  text-decoration: underline;
  padding: 5px;
  margin: 0px;
}