Mais ações
mSem resumo de edição |
mSem resumo de edição |
||
| Linha 30: | Linha 30: | ||
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); | 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; | |||
} | |||
Edição das 12h14min de 16 de agosto de 2022
/*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;
}