I am trying to set up some custom sheets for a wargame. The main use of a character sheet will be to track damage to various systems. My issues mainly have to do with CSS, of which I know very little. The paper sheets use a simple damage track with a marker that moves up or down (or side to side) to note damage to a system. Visually, the d amage track is enhanced by the use of colours - so green/blue -> yellow -> orange -> red basically. There are several systems/hit locations, but the basic mechanics is the same - a damage track with boxes to tick (or push a marker through) and that can go up/down based on accumulating damage or repair to that damage. Here's a cut out of what a portion of the paper sheet looks like, that I am roughly trying to recreate. So what I want to create is a series of checkboxes/radio buttons, and have it set to check all the 'previous' boxes (ie. if orange is the current level, all levels above that (green through yellow) are also checked. I've seen the code for filling radio buttons and check boxes and the example in the Roll20 Wiki CSS Wizardry has a Fiddle for radio buttons that I've looked at. But , I am not sure if it is possible to have the boxes/circles coloured and coloured differently. Would using different classes for each colour box work? In this post for instance <a href="https://app.roll20.net/forum/post/8908642/radio-buttons-as-a-tracker" rel="nofollow">https://app.roll20.net/forum/post/8908642/radio-buttons-as-a-tracker</a> GiGs suggests using checkboxes that look like radio buttons - I am wondering what the CSS would look like for this in order to have the different boxes/buttons be different colours? I'd probably have to use labels or a background image to get the little shields with +1/+2 etc. And could that be a related easier solution? Would using a background image like the one above that the checkboxes then overlay work? I would think then that the colours would be in the background image and the checkboxes or radio buttons would only have to be on/off (black/white) in that case. And if going this route, whats the best way to get things to line up (checkboxes or radio buttons over the background images circles) if using this option? Flex? The overall layout of the 'character' sheet will be using grid with each system (eg. head, body, legs etc) getting its own grid box within which is the damage tracker and related text. Thanks