Predefinição:Droflax/styles.css
Ir para navegação
Ir para pesquisar
.conquista-box {
display: flex;
background-color: rgba(100, 100, 100, 0.8); /* Gris medio opaco */
border: 1px solid #333;
border-radius: 4px;
padding: 6px;
width: max-content;
min-width: 500px;
font-family: sans-serif;
color: white;
box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
.conquista-icon {
width: 82px;
height: 82px;
background-color: #1c1005; /* color oscuro interno */
border: 3px solid gold;
border-radius: 10px;
box-shadow:
0 0 0 2px #522e00 inset,
0 0 6px rgba(255, 215, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
align-self: center;
margin-right: 16px;
}
.conquista-icon img{
width: 100%;
height: 100%;
border-radius: 7px;
}
.conquista-conteudo {
flex-grow: 1;
}
.conquista-titulo {
font-weight: bold;
font-size: 1.2em;
}
.conquista-descricao {
font-size: 1em;
color: #ccc;
}
.conquista-recompensas {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 10px;
}
.item {
position: relative;
width: 32px;
height: 32px;
}
.item-img {
width: 100%;
height: 100%;
}
.item-qtd {
position: absolute;
bottom: -3px;
right: -3px;
background: rgba(0, 0, 0, 0.6);
color: white;
font-size: 10px;
font-weight: bold;
padding: 0 2px;
border-radius: 3px;
}