Nota: Após publicar, você pode ter que limpar o "cache" do seu navegador para ver as alterações.
- Firefox / Safari: Pressione Shift enquanto clica Recarregar, ou pressione Ctrl-F5 ou Ctrl-R (⌘-R no Mac)
- Google Chrome: Pressione Ctrl-Shift-R (⌘-Shift-R no Mac)
- Edge: Pressione Ctrl enquanto clica Recarregar, ou pressione Ctrl-F5.
- Opera: Pressione Ctrl-F5.
/*text formatting*/
@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@300&display=swap');
body {
font-family: 'Spectral', serif;
text-align: justify;
}
#content p {
text-align: justify;
}
#content h1,
#content h2,
#content h3 {
font-family: 'Spectral', serif;
}
/*Custom classes*/
.sublinhado {
border-bottom: 1px solid;
}
.tabulado{
margin-left: 3%;
}
.trait{
margin-left: 3%;
text-indent: -25px
}
.three-column{
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
/*Auto Columns*/
.div-col {
margin-top: 0.3em;
column-width: 30em;
}
.div-col-rules {
column-rule: 1px solid #aaa;
}
/* Reset top margin for lists in div col */
.div-col dl,
.div-col ol,
.div-col ul {
margin-top: 0;
}
/* Avoid elements breaking between columns
See also Template:No col break */
.div-col li,
.div-col dd {
page-break-inside: avoid; /* Removed from CSS in favor of break-inside c. 2020 */
break-inside: avoid-column;
}