Template:Infoheader/styles.css

From The Jadnix Codex
/* The Outer Box */
.infoheader {
    background-color: #13131a; /* Dark Surface */
    border: 1px solid #a020f0; /* Jadnix Purple */
    border-left: 5px solid #a020f0; /* Thick Left Border */
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(160, 32, 240, 0.1);
    color: #d1d1d1;
    display: grid;
    grid-template-columns: 60px 1fr; /* Icon | Text */
    gap: 15px;
    align-items: center;
}

/* The Warning Icon Area */
.infoheader-icon {
    font-size: 2.5em;
    text-align: center;
    color: #a020f0;
    text-shadow: 0 0 5px #a020f0;
}

/* The Text Area */
.infoheader-content {
    font-family: 'Consolas', 'Monaco', monospace;
    line-height: 1.4;
}

/* The Label (e.g. "SEAM ID:") */
.infoheader-label {
    color: #888;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* The Value (e.g. "892") */
.infoheader-value {
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
}