Ativa o menu
Toggle preferences menu
Alternar menu pessoal
Não autenticado(a)
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: mudanças entre as edições

Página de Interface do MediaWiki
Sem resumo de edição
Sem resumo de edição
Linha 8: Linha 8:


/* Changes the default font used for MediaWiki headings to Spectral: */
/* Changes the default font used for MediaWiki headings to Spectral: */
#mw-parser-output p {
.mw-parser-output p {
   text-align: justify-left;
   text-align: justify-left;
}
}

Edição das 16h18min de 13 de outubro de 2021

/* CSS placed here will be applied to all skins */
@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@300&display=swap');

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

/* Changes the default font used for MediaWiki headings to Spectral: */
.mw-parser-output p {
  text-align: justify-left;
}
#content h1, 
#content h2, 
#content h3 {
  font-family: 'Spectral', serif;
}

.three-column{
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}