Predefinição:Questlog/styles.css

De Wiki Gla
Ir para navegação Ir para pesquisar
.questlog-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-family: 'Verdana', sans-serif;
}

.questlog-image {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 4px;
}

.questlog-container {
  position: relative;
  background-color: #1d1d1d;
  border-radius: 6px;
  padding: 12px 16px;
  color: #f0f0f0;
  max-width: 560px;
  line-height: 1.4em;
  flex-grow: 1;
}

.questlog-container::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 10px solid #1d1d1d;
  border-bottom: 10px solid transparent;
}

.questlog-response {
  margin-top: 8px;
  background-color: #2a2a2a;
  border-left: 3px solid #00ccff;
  padding: 6px 10px;
  border-radius: 4px;
  color: #bdeeff;
}

.questlog-items {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.questlog-items img {
  width: 32px;
  height: 32px;
}