
/* yes and no are used for rad/green boxes in data_structure tables */

div.yes, div.no {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
}

div.no {
    background: red;
    color: white;
}

div.no::after {
    content: "No"
}

div.yes {
    background: green;
    color: white;
}

div.yes::after {
    content: "Yes"
}
