Predefinição:Achiev/styles.css

De Wiki Gla
Ir para navegação Ir para pesquisar
.conquista-box {
  display: flex;
  background-color: #f0f4fa;      /* azul muito claro */
  border: 1px solid #a0b8d0;      /* borda azul suave */
  border-radius: 6px;
  padding: 8px;
  font-family: sans-serif;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 600px;
}

.conquista-icon {
  width: 82px;
  height: 82px;
  background-color: #ffffff;      /* fundo branco */
  border: 3px solid #4a90e2;      /* azul destaque */
  border-radius: 10px;
  box-shadow: 
    0 0 0 2px #b0cce8 inset,
    0 0 6px rgba(74,144,226,0.4);
  display: flex;
  align-items: center;
  justify-content: 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.3em;
  margin-bottom: 4px;
}

.conquista-descricao {
  font-size: 1em;
  color: #555;
}

.conquista-recompensas {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 6px;
  margin-top: 10px;
}

.conquista-recompensas .item {
  display: inline-block;
  position: relative;
  margin: 0 4px;
  overflow: visible;
}

.conquista-recompensas .item .item-img {
  display: block;
  vertical-align: bottom;
  /* sem width/height fixos – usa o tamanho original */
}

.conquista-recompensas .item .item-qtd {
  position: absolute;
  bottom: -4px;
  right: -4px;
  font-size: 10px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 1px 4px;
  border-radius: 4px;
  line-height: 1;
  box-shadow: 0 0 2px #000;
  white-space: nowrap;
  z-index: 2;
}

.conquista-recompensas .item:hover .item-qtd {
  background: rgba(0, 0, 0, 0.9);
}