}
.currentValue { color: red; }
.currentValue[type="radio"] { background-color: red; }
+
+
+/* PRINT MODE
+ need to work on this a little bit, currently just hides things that
+ shouldnt be printed and thats all. Should be able to potentially display
+ extra elements or manipulate the page in a way that make it easy to read
+ or annotate on the page.
+ */
+
+@media print {
+ nav, [type="radio"] { display: none }
+ [type="submit"] { opacity: 0; }
+ main { position: static; }
+ .currentValue { color: black; }
+ .optionsGrid { grid-template-columns: 0 auto 0 auto; }
+ .optionsGrid > * { padding: 0; }
+ .optionsGridSpacer { padding: 20px; }
+}