Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 14:56, 15 May 2025 by Luke (talk | contribs) (Luke changed the content model of the page User:Dread/WeaponCard.css from "CSS" to "Sanitized CSS")
.main-wrapper {
    font-family: barlow;
    padding: 20px;
}

h2 {
    margin: 5px 0;
}

.card {
    width: 300px;
    height: max-content;
    background: #FEFFF5;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.tags {
    margin-bottom: 10px;
}

.tag {
    background-color: #6fef93;
    color: #000;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
}

.description {
    color: #929292;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.warning {
    background: #DEDFD8;
    color: #27282C;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 15px;
}

.divider {
    border: none;
    border-top: 1px solid #ccc;
    margin: 8px 0;
}

.stats {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.stats div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.bars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 10px;
    margin-bottom: 20px;
}

.bar-item label {
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.bar {
    background: #ddd;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.bar div {
    background: #111;
    height: 100%;
}

.perks {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.perks li::after {
    content: "▲";
    color: #3bc;
}

.footer {
    display: flex;
    justify-content: space-around;
    font-weight: bold;
    font-size: 14px;
}