Mais ações
mSem resumo de edição |
mSem resumo de edição |
||
| Linha 75: | Linha 75: | ||
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.04 ), 0 3px 6px rgba( 0, 0, 0, 0.0575 ); | box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.04 ), 0 3px 6px rgba( 0, 0, 0, 0.0575 ); | ||
font-size: 0.875rem; | font-size: 0.875rem; | ||
} | |||
.home-card.home-card--button { | |||
overflow: hidden; | |||
padding: 0; | |||
background: #242a31; | |||
} | |||
.home-card--button a { | |||
display: flex; | |||
height: 100%; | |||
justify-content: center; | |||
align-items: center; | |||
padding: 0 15px; | |||
background: transparent; | |||
color: #fff; | |||
font-weight: 500; | |||
} | |||
.home-card--button .home-card__background a { | |||
padding: 0; | |||
} | |||
.home-card--button img { | |||
transition: transform 0.2s ease; | |||
} | |||
.home-card--button:hover img { | |||
transform: scale(1.1); | |||
} | } | ||
#home-card-discord { | #home-card-discord { | ||
background: #5865f2; | background: #5865f2; | ||
} | } | ||
Edição das 16h37min de 29 de novembro 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;
}
a {
color: #A88541;
}
a:hover {
color: #800A0C;
}
#content p {
text-align: justify;
}
#content h1,
#content h2,
#content h3 {
font-family: 'Spectral', serif;
}
th, td {
text-align: justify;
}
/*Custom classes*/
.sublinhado{
border-bottom: 1px solid;
}
.tabulado{
margin-left: 3%;
}
.loretext{
margin-left: 5%;
margin-right: 5%;
font-style: italic;
}
.trait{
margin-left: 3%;
text-indent: -25px
}
.three-column{
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.btn-div{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.btn {
background-color: #800A0C;
border: none;
padding: 10px 24px;
margin:15px;
border-radius: 12px;
display:flex;
align-content: center;
text-align: center;
font-family: 'Spectral', serif;
text-decoration:none;
transition-duration: 0.4s;
}
.btn:hover{
background-color: #A88541;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
/*Home Cards*/
.home-card {
position: relative;
padding: 15px;
background: var( --color-surface-1 );
border-radius: 8px;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.04 ), 0 3px 6px rgba( 0, 0, 0, 0.0575 );
font-size: 0.875rem;
}
.home-card.home-card--button {
overflow: hidden;
padding: 0;
background: #242a31;
}
.home-card--button a {
display: flex;
height: 100%;
justify-content: center;
align-items: center;
padding: 0 15px;
background: transparent;
color: #fff;
font-weight: 500;
}
.home-card--button .home-card__background a {
padding: 0;
}
.home-card--button img {
transition: transform 0.2s ease;
}
.home-card--button:hover img {
transform: scale(1.1);
}
#home-card-discord {
background: #5865f2;
}