I know using JavaScript, I could have a input form which could modify the style of those values which have been modified, by doing something like:
<input type="text" onchange="changeMyStyle()">
(Where changeMyStyle would be a function which would do the obvious, but I don't feel like hacking out right now, especially if I won't need it.)
However, I also know CSS is getting increasingly sophisticated in what it can do, but most of what I know it is limited to CSS2 or earlier.
Would it be possible to something equivalent using pure CSS, perhaps using pseudo-classes?
(This is our page -- we can control it completely. However, currently we are rendering the page in Elixir/Pheonix and have no need for client-side JavaScript. As I'm not a fan of JavaScript and all I really want is what can be percieved as a style change, I am looking to avoid putting JavaScript into the project.)