BuildControl.css 1023 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
.BuildControl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
}

.BuildControl button {
    display: block;
    font: inherit;
    padding: 5px;
    margin: 0 5px;
    width: 80px;
    border: 1px solid #aa6817;
    cursor: pointer;
    outline: none;
}

.BuildControl button:disabled {
    background-color: #ac9980;
    border: 1px solid #7e7365;
    color: #ccc;
    cursor: default;
}

.BuildControl button:hover:disabled {
    background-color: #ac9980;
    color: #ccc;
    cursor: not-allowed;
}

.Label {
    padding: 10px;
    font-weight: bold;
    width: 80px;
36
    text-transform: capitalize;
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
}

.BuildControl .Less {
    background-color: #D39952;
    color: white;
}

.BuildControl .More {
    background-color: #8f5e1e;
    color: white;
}

.BuildControl .Less:hover, .BuildControl .Less:active {
    background-color: #daa972;
    color: white;
}

.BuildControl .More:hover, .BuildControl .More:active {
    background-color: #99703f;
    color: white;
}