Predefinição:Questlog/styles.css

De Wiki Gla
Ir para navegação Ir para pesquisar
    body {
      background-color: #1b1b1b;
      font-family: Verdana, sans-serif;
      color: white;
      padding: 40px;
    }

    .questlog-wrapper {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      max-width: 700px;
    }

    .questlog-img img {
      width: 64px;
      height: 64px;
      border-radius: 6px;
      object-fit: contain;
    }

    .questlog-bubble {
      position: relative;
      background-color: #2e2b27;
      border: 2px solid #554e44;
      border-radius: 8px;
      padding: 12px;
      box-shadow: 0 0 12px rgba(0,0,0,0.6);
      flex: 1;
    }

    /* Perninha (triângulo) */
    .questlog-bubble::before {
      content: "";
      position: absolute;
      top: 20px;
      left: -10px;
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-right: 10px solid #2e2b27;
    }

    .questlog-bubble::after {
      content: "";
      position: absolute;
      top: 20px;
      left: -12px;
      width: 0;
      height: 0;
      border-top: 11px solid transparent;
      border-bottom: 11px solid transparent;
      border-right: 12px solid #554e44;
    }

    .questlog-text {
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 8px;
    }

    .questlog-resp {
      background-color: #3b362f;
      padding: 6px 10px;
      border-radius: 4px;
      font-style: italic;
      font-size: 13px;
      margin-bottom: 8px;
    }

    .questlog-items img {
      width: 32px;
      height: 32px;
      margin-right: 4px;
      vertical-align: middle;
    }

    .label {
      font-size: 11px;
      color: #aaaaaa;
      margin-bottom: 4px;
      text-transform: uppercase;
    }