Mais ações
mSem resumo de edição |
mSem resumo de edição |
||
| Linha 15: | Linha 15: | ||
/*Custom classes*/ | /*Custom classes*/ | ||
.sublinhado { | .sublinhado{ | ||
border-bottom: 1px solid; | border-bottom: 1px solid; | ||
} | } | ||
.tabulado{ | .tabulado{ | ||
margin-left: 3%; | margin-left: 3%; | ||
} | |||
.loretext{ | |||
margin-left: 3%; | |||
font-style: italic; | |||
} | } | ||
.trait{ | .trait{ | ||
| Linha 25: | Linha 29: | ||
text-indent: -25px | text-indent: -25px | ||
} | } | ||
.three-column{ | .three-column{ | ||
display: grid; | display: grid; | ||
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); | grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); | ||
} | } | ||
Edição das 12h22min 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%;
}
.loretext{
margin-left: 3%;
font-style: italic;
}
.trait{
margin-left: 3%;
text-indent: -25px
}
.three-column{
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}