Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

User:Dread/WeaponCard.css: Difference between revisions

From ARC Raiders Wiki
Content deleted Content added
Dread (talk | contribs)
Created page with ".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 {..."
 
Dread (talk | contribs)
mNo edit summary
Line 1: Line 1:
.main-wrapper {
.main-wrapper {
font-family: barlow;
font-family: barlow;
padding: 20px;
padding: 20px;
}
}


h2 {
h2 {
margin: 5px 0;
margin: 5px 0;
}
}


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


.tags {
.tags {
margin-bottom: 10px;
margin-bottom: 10px;
}
}


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


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


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


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


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


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


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


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


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


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


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


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


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

Revision as of 14:47, 15 May 2025

.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;
}