Template:PatchNoteLabel-UMVC3/styles.css: Difference between revisions

Template page
(Created page with " .label { padding:6px; border-radius:7px; font-weight: bold; text-shadow: 1px 1px 1px black; } .unconfirmed { background: #cccc00; } .confirmed { background: #e68a00; } .bug-fix { background: #008ae6; } .rework { background: #008ae6; } .nerf { background: #cc0000; } .buff { background: #2eb82e; }")
 
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 3: Line 3:
     padding:6px;  
     padding:6px;  
     border-radius:7px;  
     border-radius:7px;  
    font-size: 70%;
     font-weight: bold;  
     font-weight: bold;  
     text-shadow: 1px 1px 1px black;
     text-shadow: 1px 1px 1px black;
    vertical-align: text-top;
    margin-left: 10px;
}
}


Line 13: Line 16:
.confirmed {
.confirmed {
     background: #e68a00;
     background: #e68a00;
}
.needs-testing {
    background: #a020f0;
}
}



Latest revision as of 11:39, 14 March 2025


.label {
    padding:6px; 
    border-radius:7px; 
    font-size: 70%;
    font-weight: bold; 
    text-shadow: 1px 1px 1px black;
    vertical-align: text-top;
    margin-left: 10px;
}

.unconfirmed {
    background: #cccc00;
}

.confirmed {
    background: #e68a00;
}

.needs-testing {
    background: #a020f0;
}

.bug-fix {
    background: #008ae6;
}

.rework {
    background: #008ae6;
}

.nerf {
    background: #cc0000;
}

.buff {
    background: #2eb82e;
}