/* (edit style.css for your own book styles) */


/* webex style ammendments for ug2 - practical*/

/* styles for solveme */
.solveme { border: 2px dotted var(--orange); }
.solveme.correct { border: 2px solid var(--green); }

/* styles for hidden solutions */

.solution.open {
    height: auto;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 5px;
}

.solution button {
    height: 1.5em;
    margin-bottom: 0.5em;
    background-color: rgba(226, 164, 88, .5);
    border-color: rgba(226, 164, 88, 1);
    border-radius: 5px;
}
.solution button:hover {
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(226, 164, 88, 1);
}
