floem-css 0.2.0

Hot reloading css-like styles for Floem
Documentation
:root {
    --dark: #212223;
    --light: white;
}

body {
    background-color: var(--dark);
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    font-family: "Fira Sans";
}

h3 {
    margin: 20px;
    font-size: 16px;
    font-weight: 700;
    color: var(--light);
}

button {
    margin: 10px;
    border: 1px;
    cursor: pointer;
    font-weight: 600;
    height: 36px;
    transition: background-color 150ms;
}

button:focus {
    border-color: darkgray;
}

button-light:hover,
button-light:focus:hover {
    background-color: limegreen;
}

button-stack {
    column-gap: 5px;
}

button-light {
    color: var(--dark);
    border-color: darkgray;
    box-shadow: 0px 0px 4px 4px rgba(255, 255, 255, 0.23);
}

button-dark {
    background-color: var(--dark);
    color: var(--light);
    box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.43);
}

button-dark:hover,
button-dark:focus:hover {
    background-color: #333333;
}

button-dark:active {
    background-color: #252525;
    color: cyan;
}