Template:CharacterTableControls/style.css: Difference between revisions

From Blue Archive Wiki
Jump to navigation Jump to search
Content added Content deleted
No edit summary
No edit summary
Line 1: Line 1:
.charactertable-controls {
.charactertable-controls {
box-sizing: border-box;
background-color: #f8f9fa;
background-color: #f8f9fa;
border: 1px solid #a2a9b1;
border: 1px solid #a2a9b1;
margin: auto;
padding: 0.2em 0.4em;
padding: 0.2em 0.4em;

Revision as of 08:49, 24 January 2023

.charactertable-controls {
    box-sizing: border-box;
    background-color: #f8f9fa;
    border: 1px solid #a2a9b1;
    margin: auto;
    
    padding: 0.2em 0.4em;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 20px;
    line-height: normal;
}

.charactertable-controls div.controls > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height:34px;
    width:36px;
    margin: 0 1px;
    border-radius: 2px;
    cursor: pointer;
}

.charactertable-controls .inactive {
    filter: grayscale(0.3);
    opacity: 0.3;
}


.charactertable-controls div.controls-class > span {
    width: 82px;
    height: 26px;
    border-width: 0 3px;
    border-style: solid;

    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #ecf5f9;

    transform: skewX(-10deg);
}

.charactertable-controls div.controls-class > span.class-striker {
    border-color: #f54d29;
}
.charactertable-controls div.controls-class > span.class-special {
    border-color: #0785fb;
}