tuix 0.2.0

Cross-platform GUI toolkit
Documentation

button {
    font-size: 16px;
    child-space: 1s;
    border-radius: 3px;
    width: 100px;
    height: 30px;
}

button {
    background-color: #6200ee;
    outer-shadow: 0px 2px 2px #88888888;
}

button:hover {
    background-color: #6e14ef;
    outer-shadow-color: black;
    /* transition: background-color 0.1 0.0; */
    transition: outer-shadow-color 0.5 0.0;
}

button:active {
    background-color: #a56bf5;
}

button:focus {
    border-color: red;
    border-width: 1px;
}

label {
    border-color: #9e9e9e;
    color: black;
    border-width: 1px;
    width: 100px;
    height: 30px;
    border-radius: 3px;
    child-space: 1s;
    child-left: 5px;
}

label:hover {
    border-color: black;
}

label:focus {
    border-color: red;
    border-width: 1px;
}

counter {
    layout-type: row;
    col-between: 1s;
    width: 1s;
    child-space: 1s;
}

counter:focus {
    border-width: 1px;
    border-color: red;
}